@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bree+Serif&family=Roboto+Slab:wght@100..900&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #e3d5c0;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --paper-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1200' viewBox='0 0 1600 1200'%3E%3Cfilter id='paper' x='0%25' y='0%25' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.006 0.009' numOctaves='5' seed='23' stitchTiles='noStitch'/%3E%3CfeColorMatrix values='0.32 0 0 0 0.20 0 0.27 0 0 0.16 0 0 0.20 0 0.10 0 0 0 0.48 0'/%3E%3C/filter%3E%3Crect width='1600' height='1200' filter='url(%23paper)'/%3E%3C/svg%3E");
  --fine-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1200' viewBox='0 0 1600 1200'%3E%3Cfilter id='fine' x='0%25' y='0%25' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.028 0.035' numOctaves='3' seed='71' stitchTiles='noStitch'/%3E%3CfeColorMatrix values='0.22 0 0 0 0.22 0 0.20 0 0 0.17 0 0 0.16 0 0.12 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='1600' height='1200' filter='url(%23fine)'/%3E%3C/svg%3E");
}

.hidden {
  display: none !important;
}

.site-header {
  width: 100%;
  background: #000;
}

.header-top {
  width: min(1500px, calc(100% - 40px));
  min-height: 200px;
  margin: 0 auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns:
    minmax(170px, 1fr)
    minmax(280px, 34vw)
    minmax(350px, 1fr);
  align-items: center;
  column-gap: 24px;
}

.header-logo {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  display: block;
  width: auto;
  height: 140px;
  max-width: 100%;
  object-fit: contain;
}

.header-alternate-logo {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.header-alternate-logo img {
  display: block;
  width: auto;
  height: clamp(125px, 13vw, 220px);
  max-width: 100%;
  object-fit: contain;
}

.header-right {
  grid-column: 3;
  justify-self: stretch;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 28px);
}

.header-images {
  display: grid !important;
  grid-template-columns: auto auto !important;
  grid-template-rows: auto !important;
  align-items: center;
  justify-content: end;
  gap: clamp(8px, 1vw, 16px);
  min-width: max-content;
  width: max-content;
  flex-shrink: 0;
}

.header-images > div {
  display: contents;
}

.header-images img {
  display: block !important;
  grid-row: 1 !important;
  width: auto;
  height: clamp(55px, 6vw, 90px);
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
}

.header-utilities {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #e3d5c0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.language-switcher a {
  color: #e3d5c0;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.language-switcher a:hover {
  opacity: 1;
  color: #fff;
}

.language-switcher span {
  opacity: 0.45;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links img {
  display: block;
  width: auto;
  height: 25px;
  object-fit: contain;
}

.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(227, 213, 192, 0.12);
}

.main-nav a {
  position: relative;
  color: #e3d5c0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #e3d5c0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  width: 100%;
  height: 25vw;
  max-height: 350px;
  overflow: hidden;
  background: #000;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
}

.intro-sections {
  position: relative;
  display: flex;
  width: 100%;
  background: #e3d5c0;
  color: #677925;
  overflow: hidden;
}

.intro-sections::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--paper-texture);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.intro-sections::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--fine-texture);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.42;
  mix-blend-mode: multiply;
}

.shows-content::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: var(--paper-texture);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--paper-texture);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.contact-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--fine-texture);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.42;
  mix-blend-mode: multiply;
}

.intro-section {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 52px 6vw 58px;
  text-align: center;
}

.intro-section + .intro-section {
  border-left: 1px solid rgba(103,121,37,0.25);
}

.intro-band {
  text-align: left;
}

.intro-band .section-icon {
  display: block;
  width: 54px;
  height: 32px;
  margin: 0 auto 5px;
  object-fit: contain;
}

.intro-band h2 {
  text-align: center;
}

.intro-testimonials {
  text-align: left;
}

.testimonial-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.speech-icon {
  display: block;
  width: 40px;
  height: 32px;
  margin: 0 auto 5px;
  color: #677925;
  overflow: visible;
}

.testimonial-heading h2 {
  margin: 0;
  text-align: center;
}

.section-icon {
  display: block;
  color: #677925;
  fill: currentColor;
}

.band-icon {
  width: 54px;
  height: 32px;
}

.intro-section h2 {
  margin: 0 0 20px;
  color: #677925;
  font-family:
    "Bebas Neue",
    Impact,
    "Arial Narrow",
    sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.intro-section p {
  margin: 0 auto;
  max-width: 550px;
  color: #677925;
  font-size: 16px;
  line-height: 1.65;
}

.intro-band p + p {
  margin-top: 28px;
}

.band-video {
  width: 100%;
  max-width: 500px;
  margin: 38px auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 25px;
}

.band-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.band-description {
  max-width: 550px;
  margin: 32px auto 0;
  text-align: left;
}

.band-description p {
  margin: 0;
}

.band-description p + p {
  margin-top: 18px;
}

.testimonial {
  max-width: 550px;
  margin: 0 auto;
}

.testimonial + .testimonial {
  margin-top: 34px;
}

.testimonial p {
  margin: 0;
}

.testimonial p + p {
  margin-top: 14px;
}

.testimonial-date {
  margin-top: 8px !important;
  font-size: 13px !important;
  font-style: italic;
  opacity: 0.8;
}

.shows-page {
  position: relative;
  min-height: 100vh;
  padding: 60px 25px 80px;
  background: #000;
}

.shows-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 55px;
  background: #e3d5c0;
  border-left: 1px solid rgba(103,121,37,0.55);
  border-right: 1px solid rgba(103,121,37,0.55);
  overflow: visible;
  border-radius: 20px;
}

.contact-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 25px 80px;
  color: #677925;
  overflow: hidden;
  border: none;
  background: #e3d5c0;
}

.contact-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: none;
}

.shows-heading,
.shows-calendar {
  position: relative;
  z-index: 2;
  font-family: Roboto Slab;
}

.shows-heading {
  margin-bottom: 42px;
  text-align: center;
}

.tour-heading {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.tour-heading > img {
  display: block;
  width: 125px;
  height: auto;
  object-fit: contain;
  justify-self: start;
  flex-shrink: 0;
  border-radius: 0;
}

.tour-heading #c_fr,
.tour-heading #c_en {
  text-align: left;
}

.shows-heading h1,
.tour-heading h1 {
  margin: 0;
  color: #677925;
  font-family:
    "Roboto Slab",
    Georgia,
    serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.shows-heading .shows-subtitle {
  margin-top: 10px;
  color: #4a4a3a;
  font-size: 13px;
  font-style: italic;
}

.shows-private {
  margin-top: 8px;
  color: #677925;
  font-size: 9px;
}

.shows-calendar {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.tour-header {
  margin: 30px 0 0;
  color: #677925;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

.tour-heading h1 sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
}

.show-event {
  display: grid;
  grid-template-columns:
    125px
    minmax(0, 1fr)
    130px;
  align-items: center;
  column-gap: 18px;
  padding: 14px 0;
}

.show-date {
  min-width: 105px;
  padding: 8px 18px;
  border: 1px solid #677925;
  border-radius: 9px;
  color: #677925;
  text-align: center;
  line-height: 1.1;
}

.show-date span {
  display: block;
}

.show-date strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 400;
}

.show-date span:first-child,
.show-date span:last-child {
  font-size: 16px;
}

.show-info {
  min-width: 0;
  padding-left: 0;
  font-size: 15pt;
  line-height: 1.35;
  color: #677925;
}

.show-venue {
  color: #677925;
}

.show-location {
  color: #4a4a3a;
}

.show-note {
  color: #677925;
  font-size: 9pt;
}

.show-ticket {
  white-space: nowrap;
  justify-self: start;
  margin-left: 0;
}

.show-ticket a {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #677925;
  border-radius: 9px;
  color: #677925;
  font-size: 15.0pt;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.show-ticket a:hover {
  background: #677925;
  color: #e3d5c0;
}

.show-separator {
  height: 3px;
}

.year-divider {
  height: 10px;
}

.shows-footer {
  margin-top: 25px;
  text-align: left;
}

.shows-footer img {
  display: inline-block;
  height: 35px;
  border-radius: 0;
}

.shows-poster {
  position: absolute;
  z-index: 5;
  top: 50px;
  width: 180px;
  pointer-events: none;
}

.shows-poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow:
    0 12px 35px
    rgba(0,0,0,0.45);
}

.shows-poster-left {
  right: calc(100% + 35px);
  transform: rotate(-2deg);
}

.shows-poster-right {
  left: calc(100% + 35px);
  transform: rotate(2deg);
}

@media (max-width: 1150px) {

  .header-top {
    width: calc(100% - 30px);
    min-height: 165px;
    grid-template-columns:
      minmax(130px, 1fr)
      minmax(250px, 32vw)
      minmax(310px, 1fr);
    column-gap: 15px;
  }

  .header-logo img {
    height: 110px;
  }

  .header-alternate-logo img {
    height: clamp(105px, 12vw, 165px);
  }

  .header-right {
    gap: 12px;
  }

  .header-images {
    gap: 8px;
  }

  .header-images img {
    height: 62px;
    max-width: 105px;
  }

  .language-switcher {
    font-size: 12px;
  }

  .social-links {
    gap: 8px;
  }

  .social-links img {
    height: 21px;
  }

  .main-nav {
    gap: 28px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .intro-section {
    padding: 42px 4vw 48px;
  }

  .shows-poster {
    width: 155px;
  }

  .shows-poster-left {
    right: calc(100% + 20px);
  }

  .shows-poster-right {
    left: calc(100% + 20px);
  }
}

@media (max-width: 1050px) {

  .shows-page {
    padding: 50px 20px 70px;
  }

  .shows-content {
    max-width: 760px;
    padding: 48px 45px;
  }

  .shows-calendar {
    max-width: 660px;
  }

  .show-event {
    grid-template-columns:
      110px
      minmax(0, 1fr)
      115px;
    column-gap: 14px;
  }

  .show-date {
    min-width: 100px;
    padding: 8px 12px;
  }

  .show-info {
    font-size: 17px;
  }

  .show-ticket a {
    padding: 9px 20px;
    font-size: 15px;
  }

  .shows-poster {
    width: 135px;
  }

  .shows-poster-left {
    right: calc(100% + 10px);
  }

  .shows-poster-right {
    left: calc(100% + 10px);
  }
}

@media (max-width: 900px) {

  .shows-page {
    padding: 40px 20px 60px;
  }

  .shows-content {
    width: 100%;
    max-width: 760px;
    padding: 45px 40px;
  }

  .shows-heading {
    margin-bottom: 35px;
  }

  .tour-heading {
    grid-template-columns: 110px minmax(0, 1fr);
    column-gap: 14px;
  }

  .tour-heading > img {
    width: 110px;
    height: auto;
  }

  .shows-heading h1,
  .tour-heading h1 {
    font-size: 36px;
  }

  .show-event {
    grid-template-columns:
      100px
      minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 5px;
  }

  .show-date {
    min-width: 95px;
    padding: 7px 10px;
  }

  .show-date span:first-child,
  .show-date span:last-child {
    font-size: 14px;
  }

  .show-date strong {
    font-size: 25px;
  }

  .show-info {
    font-size: 16px;
  }

  .show-ticket {
    grid-column: 2;
    justify-self: start;
    margin-top: 5px;
  }

  .show-ticket a {
    font-size: 15px;
    padding: 9px 22px;
  }

  .shows-poster {
    display: none;
  }
}

@media (max-width: 760px) {

  .header-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 14px 0;
    row-gap: 12px;
  }

  .header-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .header-logo img {
    height: 75px;
  }

  .header-alternate-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
  }

  .header-alternate-logo img {
    height: 85px;
    max-width: 170px;
  }

  .header-right {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .header-images img {
    height: 55px;
    max-width: 85px;
  }

  .main-nav {
    gap: 12px 20px;
    flex-wrap: wrap;
    padding: 14px 10px 18px;
  }

  .main-nav a {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 700px) {

  .shows-page {
    padding: 35px 15px 55px;
  }

  .shows-content {
    max-width: 100%;
    padding: 40px 30px;
  }

  .tour-heading {
    grid-template-columns: 100px minmax(0, 1fr);
    column-gap: 16px;
  }

  .tour-heading > img {
    width: 100px;
    height: auto;
  }

  .shows-heading h1,
  .tour-heading h1 {
    font-size: 32px;
  }

  .shows-calendar {
    max-width: 100%;
  }

  .show-event {
    grid-template-columns:
      90px
      minmax(0, 1fr);
    column-gap: 14px;
  }

  .show-date {
    min-width: 88px;
    padding: 7px 8px;
  }

  .show-date span:first-child,
  .show-date span:last-child {
    font-size: 13px;
  }

  .show-date strong {
    font-size: 23px;
  }

  .show-info {
    font-size: 15px;
  }

  .show-ticket {
    grid-column: 2;
  }

  .show-ticket a {
    font-size: 15px;
    padding: 8px 20px;
  }
}

@media (max-width: 600px) {

  .header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    width: calc(100% - 20px);
    padding: 12px 0 16px;
    row-gap: 10px;
  }

  .header-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .header-logo img {
    height: 72px;
  }

  .header-alternate-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: auto;
  }

  .header-alternate-logo img {
    height: 82px;
    max-width: 165px;
  }

  .header-right {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .header-images {
    gap: 8px;
  }

  .header-images img {
    height: 50px;
    max-width: 76px;
  }

  .language-switcher {
    font-size: 10px;
  }

  .social-links {
    gap: 8px;
  }

  .social-links img {
    height: 18px;
  }

  .main-nav {
    gap: 12px 20px;
  }

  .intro-sections {
    flex-direction: column;
  }

  .intro-section {
    width: 100%;
    padding: 38px 25px 42px;
  }

  .intro-section + .intro-section {
    border-left: none;
    border-top: 1px solid rgba(103,121,37,0.25);
  }

  .intro-section h2 {
    font-size: 28px;
  }

  .intro-section p {
    font-size: 15px;
  }

  .band-video {
    max-width: 500px;
    margin-top: 32px;
    border-radius: 20px;
  }

  .band-description {
    max-width: 500px;
    margin-top: 28px;
  }

  .testimonial {
    max-width: none;
  }
}

@media (max-width: 500px) {

  .shows-page {
    padding: 20px 8px 40px;
  }

  .shows-content {
    width: 100%;
    padding: 32px 18px;
  }

  .shows-heading {
    margin-bottom: 30px;
  }

  .tour-heading {
    grid-template-columns: 90px minmax(0, 1fr);
    column-gap: 14px;
  }

  .tour-heading > img {
    width: 90px;
    height: auto;
  }

  .shows-heading h1,
  .tour-heading h1 {
    font-size: 27px;
  }

  .shows-heading .shows-subtitle {
    font-size: 12px;
  }

  .shows-private {
    font-size: 8px;
  }

  .show-event {
    grid-template-columns:
      78px
      minmax(0, 1fr);
    column-gap: 12px;
    padding: 12px 0;
  }

  .show-date {
    min-width: 76px;
    padding: 6px 5px;
  }

  .show-date span:first-child,
  .show-date span:last-child {
    font-size: 12px;
  }

  .show-date strong {
    font-size: 21px;
  }

  .show-info {
    font-size: 14px;
  }

  .show-note {
    font-size: 9px;
  }

  .show-ticket {
    grid-column: 2;
    margin-top: 4px;
  }

  .show-ticket a {
    font-size: 14px;
    padding: 8px 18px;
  }

  .show-separator {
    height: 12px;
  }

  .year-divider {
    height: 18px;
  }

  .tour-header {
    margin: 25px 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {

  .header-logo img {
    height: 62px;
  }

  .header-alternate-logo img {
    height: 70px;
    max-width: 140px;
  }

  .header-right {
    gap: 9px;
  }

  .header-images {
    gap: 5px;
  }

  .header-images img {
    height: 42px;
    max-width: 62px;
  }

  .social-links {
    gap: 6px;
  }

  .social-links img {
    height: 16px;
  }

  .language-switcher {
    font-size: 9px;
  }

  .main-nav {
    gap: 9px 13px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .intro-section {
    padding: 32px 20px 36px;
  }

  .intro-section h2 {
    font-size: 27px;
  }

  .band-video {
    border-radius: 18px;
  }

  .shows-content {
    padding: 28px 14px;
  }

  .tour-heading {
    grid-template-columns: 70px minmax(0, 1fr);
    column-gap: 10px;
  }

  .tour-heading > img {
    width: 70px;
    height: auto;
  }

  .shows-heading h1,
  .tour-heading h1 {
    font-size: 23px;
  }

  .show-event {
    grid-template-columns:
      70px
      minmax(0, 1fr);
    column-gap: 10px;
  }

  .show-date {
    min-width: 68px;
    padding: 5px 4px;
  }

  .show-date span:first-child,
  .show-date span:last-child {
    font-size: 11px;
  }

  .show-date strong {
    font-size: 19px;
  }

  .show-info {
    font-size: 13px;
  }

  .show-ticket a {
    font-size: 13px;
    padding: 7px 15px;
  }
}

/* Contact page: dedicated classes kept separate from the shows calendar. */
.contact-calendar {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.contact-event {
  display: grid;
  grid-template-columns:
    125px
    minmax(0, 1fr)
    130px;
  align-items: center;
  column-gap: 18px;
  padding: 14px 0;
}

.contact-date {
  min-width: 105px;
  padding: 8px 18px;
  border: 1px solid #677925;
  border-radius: 9px;
  color: #677925;
  text-align: center;
  line-height: 1.1;
}

.contact-date span {
  display: block;
}

.contact-date strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 400;
}

.contact-date span:first-child,
.contact-date span:last-child {
  font-size: 16px;
}

.contact-info {
  min-width: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #677925;
}

.contact-venue {
  color: #677925;
}

.contact-separator {
  height: 3px;
}

@media (max-width: 1050px) {
  .contact-calendar {
    max-width: 660px;
  }

  .contact-event {
    grid-template-columns:
      110px
      minmax(0, 1fr)
      115px;
    column-gap: 14px;
  }

  .contact-date {
    min-width: 100px;
    padding: 8px 12px;
  }

  .contact-info {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .contact-event {
    grid-template-columns:
      100px
      minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 5px;
  }

  .contact-date {
    min-width: 95px;
    padding: 7px 10px;
  }

  .contact-date span:first-child,
  .contact-date span:last-child {
    font-size: 14px;
  }

  .contact-date strong {
    font-size: 25px;
  }

  .contact-info {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .contact-calendar {
    max-width: 100%;
  }

  .contact-event {
    grid-template-columns:
      90px
      minmax(0, 1fr);
    column-gap: 14px;
  }

  .contact-date {
    min-width: 88px;
    padding: 7px 8px;
  }

  .contact-date span:first-child,
  .contact-date span:last-child {
    font-size: 13px;
  }

  .contact-date strong {
    font-size: 23px;
  }

  .contact-info {
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  .contact-event {
    grid-template-columns:
      78px
      minmax(0, 1fr);
    column-gap: 12px;
    padding: 12px 0;
  }

  .contact-date {
    min-width: 76px;
    padding: 6px 5px;
  }

  .contact-date span:first-child,
  .contact-date span:last-child {
    font-size: 12px;
  }

  .contact-date strong {
    font-size: 21px;
  }

  .contact-info {
    font-size: 14px;
  }

  .contact-separator {
    height: 12px;
  }
}

@media (max-width: 420px) {
  .contact-event {
    grid-template-columns:
      70px
      minmax(0, 1fr);
    column-gap: 10px;
  }

  .contact-date {
    min-width: 68px;
    padding: 5px 4px;
  }

  .contact-date span:first-child,
  .contact-date span:last-child {
    font-size: 11px;
  }

  .contact-date strong {
    font-size: 19px;
  }

  .contact-info {
    font-size: 13px;
  }
}


/* Contact page — dedicated component styles */
.contact-heading,
.contact-methods {
  position: relative;
  z-index: 2;
}

.contact-heading {
  margin-bottom: 20px;
}

.contact-title {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.contact-title > img {
  display: block;
  width: 125px;
  height: auto;
  object-fit: contain;
  justify-self: start;
  flex-shrink: 0;
  border-radius: 0;
}

.contact-title #c_fr,
.contact-title #c_en {
  text-align: left;
}

.contact-title h1 {
  margin: 0;
  color: #677925;
  font-family:
    "Roboto Slab",
    Georgia,
    serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.contact-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-methods {
  width: 100%;
  max-width: 460px;
}

.contact-method {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  padding: 14px 0;
}

.contact-image {
  flex: 0 0 auto;
  transform: translate(-60px,30px);
}

.contact-image img {
  display: block;
  width: 280px;
  height: auto;
}

.contact-method-icon {
  min-width: 105px;
  padding: 8px 18px;
  border: 1px solid #677925;
  border-radius: 9px;
  color: #677925;
  text-align: center;
  line-height: 1.1;
}

.contact-method-icon span {
  display: block;
}

.contact-method-icon strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 400;
}

.contact-method-icon span:first-child,
.contact-method-icon span:last-child {
  font-size: 16px;
}

.contact-method-info {
  min-width: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #677925;
}

.contact-method-link {
  color: #677925;
}

.contact-divider {
  height: 3px;
}

.contact-footer {
  margin-top: 25px;
  text-align: left;
}

@media (max-width: 1050px) {
  .contact-methods {
    max-width: 440px;
  }

  .contact-method {
    grid-template-columns: 110px minmax(0, 1fr);
    column-gap: 14px;
  }

  .contact-method-icon {
    min-width: 100px;
    padding: 8px 12px;
  }

  .contact-method-info {
    font-size: 17px;
  }

  .contact-image img {
    width: 220px;
  }
}

@media (max-width: 900px) {
  .contact-title {
    grid-template-columns: 110px minmax(0, 1fr);
    column-gap: 14px;
  }

  .contact-title > img {
    width: 110px;
  }

  .contact-title h1 {
    font-size: 36px;
  }

  .contact-method {
    grid-template-columns: 100px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 5px;
  }

  .contact-method-icon {
    min-width: 95px;
    padding: 7px 10px;
  }

  .contact-method-icon span:first-child,
  .contact-method-icon span:last-child {
    font-size: 14px;
  }

  .contact-method-icon strong {
    font-size: 25px;
  }

  .contact-method-info {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .contact-title {
    grid-template-columns: 100px minmax(0, 1fr);
    column-gap: 16px;
  }

  .contact-title > img {
    width: 100px;
  }

  .contact-title h1 {
    font-size: 32px;
  }

  .contact-methods {
    max-width: 100%;
  }

  .contact-body {
    justify-content: center;
  }

  .contact-image img {
    width: 180px;
  }

  .contact-method {
    grid-template-columns: 90px minmax(0, 1fr);
    column-gap: 14px;
  }

  .contact-method-icon {
    min-width: 88px;
    padding: 7px 8px;
  }

  .contact-method-icon span:first-child,
  .contact-method-icon span:last-child {
    font-size: 13px;
  }

  .contact-method-icon strong {
    font-size: 23px;
  }

  .contact-method-info {
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  .contact-title {
    grid-template-columns: 90px minmax(0, 1fr);
    column-gap: 14px;
  }

  .contact-title > img {
    width: 90px;
  }

  .contact-title h1 {
    font-size: 27px;
  }

  .contact-method {
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 12px;
    padding: 12px 0;
  }

  .contact-method-icon {
    min-width: 76px;
    padding: 6px 5px;
  }

  .contact-method-icon span:first-child,
  .contact-method-icon span:last-child {
    font-size: 12px;
  }

  .contact-method-icon strong {
    font-size: 21px;
  }

  .contact-method-info {
    font-size: 14px;
  }

  .contact-divider {
    height: 12px;
  }
}

/* Band page — follows the contact page shell, while preserving the original team layout. */
.band-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 25px 80px;
  color: #677925;
  overflow: hidden;
  border: none;
  background: #e3d5c0;
}
.band-page::before { content:""; position:absolute; inset:0; pointer-events:none; background-image:var(--paper-texture); background-size:cover; background-position:center; background-repeat:no-repeat; opacity:.58; mix-blend-mode:multiply; }
.band-page::after { content:""; position:absolute; inset:0; pointer-events:none; background-image:var(--fine-texture); background-size:cover; background-position:center; background-repeat:no-repeat; opacity:.42; mix-blend-mode:multiply; }
.band-content { position:relative; z-index:1; width:100%; max-width:900px; margin:0 auto; }
.band-heading { position:relative; z-index:2; margin-bottom:20px; }
.band-title { display:grid; grid-template-columns:125px minmax(0,1fr); align-items:center; column-gap:18px; width:100%; max-width:680px; margin:0 auto; }
.band-title > img { display:block; width:125px; height:auto; object-fit:contain; justify-self:start; flex-shrink:0; border-radius:0; }
.band-title #band-title-fr, .band-title #band-title-en { text-align:left; }
.band-title h1 { margin:0; color:#677925; font-family:"Roboto Slab",Georgia,serif; font-size:40px; font-weight:700; line-height:1.15; letter-spacing:0; text-transform:none; }
.band-body { position:relative; z-index:2; text-align:center; font-family:"Roboto Slab",Georgia,serif; font-size:16px; line-height:1.55; }
.band-body-logo { display:block; width:150px; height:auto; margin:0 auto 28px; }
.band-members { color:#677925; }
.band-members > div { margin:0; }
.band-members strong { font-weight:700; }
.band-afm-number,
.band-license span {
  font-size: 11px;
  color: #000;
}

.band-license {
  margin-top: 26px;
  color: #000;
}

.band-license span {
  display: block;
  margin-bottom: 8px;
  color: #000;
}
.band-license img { display:block; width:auto; height:80px; margin:0 auto; }

/* Desktop: spread the kept photo/members/license block across the page instead of a narrow centered column */
@media (min-width:901px) {
  .band-page { display:flex; align-items:center; justify-content:center; min-height:100vh; }
  .band-content { max-width:1100px; }
  .band-title { max-width:none; margin:0 0 44px; }
  .band-body {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    grid-template-areas:
      "photo members"
      "photo license";
    align-items: center;
    column-gap: 70px;
    text-align: left;
  }
  .band-wallygator { grid-area: photo; width:100% !important; margin:0; }
  .band-members { grid-area: members; align-self: end; }
  .band-license { grid-area: license; align-self: start; margin-top:22px; text-align:left; }
  .band-license span { text-align:left; }
  .band-license img { margin:0; }
}

@media (max-width:900px) { .band-title { grid-template-columns:110px minmax(0,1fr); column-gap:14px; } .band-title > img { width:110px; } .band-title h1 { font-size:36px; } }
@media (max-width:700px) { .band-title { grid-template-columns:100px minmax(0,1fr); column-gap:16px; } .band-title > img { width:100px; } .band-title h1 { font-size:32px; } .band-body { font-size:15px; } }
@media (max-width:500px) { .band-page { padding:45px 18px 60px; } .band-title { grid-template-columns:90px minmax(0,1fr); column-gap:14px; } .band-title > img { width:90px; } .band-title h1 { font-size:27px; } .band-body-logo { width:125px; margin-bottom:24px; } .band-body { font-size:14px; } .band-afm-number, .band-license span { font-size:9px; } .band-license img { height:70px; } }
@media (max-width:420px) { .band-page { padding:40px 14px 50px; } .band-title { grid-template-columns:70px minmax(0,1fr); column-gap:10px; } .band-title > img { width:70px; } .band-title h1 { font-size:23px; } .band-body-logo { width:110px; } .band-body { font-size:13px; } }

.shop-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 25px 80px;
  color: #677925;
  overflow: hidden;
  background: #000;
}

.shop-page::before,
.shop-page::after {
  display: none;
}

.shop-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.shop-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.shop-frame iframe {
  display: block;
  width: 100%;
  height: 2100px;
  border: 0;
  background: #fff;
}

@media (max-width: 900px) {
  .shop-page {
    padding: 50px 20px 60px;
  }
}

@media (max-width: 700px) {
  .shop-page {
    padding: 40px 15px 50px;
  } 
}

.fans-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 25px 80px;
  color: #677925;
  overflow: hidden;
  background: #000;
}

.fans-page::before,
.fans-page::after {
  display: none;
}

.fans-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.fans-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.fans-frame iframe {
  display: block;
  width: 100%;
  height: 1024px;
  border: 0;
  background: #000;
}

@media (max-width: 900px) {
  .fans-page {
    padding: 50px 20px 60px;
  }
}

@media (max-width: 700px) {
  .fans-page {
    padding: 40px 15px 50px;
  }

  .fans-frame {
    border-radius: 12px;
  }
}
/* Pictures gallery page — dark shell to let photos pop, consistent with shop/fans pages. */
.pictures-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 60px 25px 90px;
  color: #e3d5c0;
  overflow: hidden;
  background: #000;
}

.pictures-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.pictures-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 40px;
}

.pictures-tab {
  display: inline-block;
  padding: 9px 24px;
  border: 1px solid #e3d5c0;
  border-radius: 9px;
  color: #e3d5c0;
  font-family: "Bree Serif", serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pictures-tab:hover {
  background: rgba(227, 213, 192, 0.12);
}

.pictures-tab.active {
  border-color: #677925;
  background: #677925;
  color: #e3d5c0;
  cursor: default;
}

/* Masonry via CSS columns — each photo keeps its natural ratio (portrait or
   landscape) instead of being cropped into a uniform box. Full-resolution
   source images are used and simply displayed smaller, so thumbnails stay
   sharp at this size. */
.pictures-grid {
  column-count: 4;
  column-gap: 20px;
}

.pictures-item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: none;
  border-radius: 14px;
  background: #111;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
  padding: 0;
  appearance: none;
  break-inside: avoid;
  margin: 0 0 20px;
}

.pictures-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.pictures-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pictures-item:hover img,
.pictures-item:focus-visible img {
  transform: scale(1.08);
}

.pictures-item:hover::after,
.pictures-item:focus-visible::after {
  opacity: 1;
}

.pictures-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #e3d5c0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pictures-item:hover .pictures-zoom,
.pictures-item:focus-visible .pictures-zoom {
  opacity: 1;
  transform: translateY(0);
}

.pictures-zoom svg {
  width: 15px;
  height: 15px;
}

/* Lightbox viewer */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 90px;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 213, 192, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #e3d5c0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(227, 213, 192, 0.18);
  border-color: #e3d5c0;
}

.lightbox-close {
  top: 22px;
  right: 25px;
  width: 42px;
  height: 42px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 18px;
  height: 18px;
}

.lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(227, 213, 192, 0.75);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .pictures-page {
    padding: 50px 18px 70px;
  }

  .pictures-grid {
    column-count: 3;
    column-gap: 14px;
  }

  .pictures-item {
    margin-bottom: 14px;
  }

  .lightbox-overlay {
    padding: 60px 60px;
  }
}

@media (max-width: 700px) {
  .pictures-page {
    padding: 42px 14px 60px;
  }

  .pictures-tabs {
    gap: 10px;
    margin: 22px 0 30px;
  }

  .pictures-tab {
    padding: 8px 18px;
    font-size: 13px;
  }

  .pictures-grid {
    column-count: 2;
    column-gap: 10px;
  }

  .pictures-item {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .lightbox-overlay {
    padding: 90px 20px 40px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 420px) {
  .pictures-grid {
    column-count: 1;
  }
}