@font-face {
  font-family: 'GT America Standard';
  src: url(../fonts/GT/GT-America-Standard-Regular.woff2) format("woff2"), url(../fonts/GT/GT-America-Standard-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'GT America Standard';
  src: url(../fonts/GT/GT-America-Standard-Medium.woff2) format("woff2"), url(../fonts/GT/GT-America-Standard-Medium.otf) format("opentype");
  font-weight: 500;
  font-style: normal
}

@font-face {
  font-family: 'GT America Standard';
  src: url(../fonts/GT/GT-America-Standard-Bold.woff2) format("woff2"), url(../fonts/GT/GT-America-Standard-Bold.otf) format("opentype");
  font-weight: 700;
  font-style: normal
}

@font-face {
  font-family: 'GT America Standard';
  src: url(../fonts/GT/GT-America-Standard-Black.woff2) format("woff2"), url(../fonts/GT/GT-America-Standard-Black.otf) format("opentype");
  font-weight: 900;
  font-style: normal
}

body {
  font-size: 16px;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}
p.subtitle {
  font-size: 14px;
  letter-spacing: 20%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  p.subtitle {
    font-size: 16px;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
 text-transform:none !important;
 font-family:'GT America Standard';
 letter-spacing:-.02em !important;
}

h1 {
  font-size: 10vw;
  line-height: 0.9;
  margin-bottom: 25px;
  margin-top: 0;
  margin-left: -0.1em;
  letter-spacing: -5%;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: clamp(42px, 17vw, 82px);
  }
}
@media screen and (min-width: 1440px) {
  h1 {
    font-size: 82px;
  }
}

h2, .h2 {
  font-size: clamp(30px, 8vw, 38px);
  font-weight: 400;
  margin-bottom: 15px;
}
@media (min-width: 1080px) {
  h2, .h2 {
    font-size: 38px;
  }
}

h3, .h3 {
  font-weight: 400;
  font-size: clamp(24px, 6vw, 30px);
  margin-bottom: 15px;
}
@media screen and (min-width: 1440px) {
  h3, .h3 {
    font-size: 30px;
  }
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .only-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .only-desktop {
    display: none !important;
  }
}

a.underline{
 text-decoration:underline;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bkgd-container {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.bkgd-container .video {
  pointer-events: none;
  height: 100%;
}
.bkgd-container .video::-webkit-media-controls-timeline {
  display: none;
}

.bkgd-container--fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bkgd-container--fill video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.l-stack {
  display: grid;
  gap: 2px;
  height: 100%;
}
@media (min-width: 768px) {
  .l-stack {
    display: flex;
    flex-flow: column wrap;
  }
}
.l-stack--space-between {
  justify-content: space-between;
}
.l-stack__item--auto {
  flex: 1 1 0;
}
.l-stack__item--shrink {
  flex: 0 0 auto;
}

.l-columns {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .l-columns--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .l-columns--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .l-columns--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .l-columns--2-sm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.l-columns--align-start {
  align-items: start;
}
.l-columns--align-center {
  align-items: center;
}
.l-columns--align-stretch {
  align-items: stretch;
}
.l-columns__item {
  width: 100%;
}
.l-columns__item--span-2 {
  grid-column: span 2;
}
.l-columns__item--span-3 {
  grid-column: span 3;
}
.l-columns--no-space {
  gap: 0;
  padding: 0;
}

.btn-group {
  display: flex;
  gap: 10px;
  flex-flow: row wrap;
  margin-top: 15px;
}

.coachella .btn {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
.btn--fill, .btn--outline {
  padding: 1.1em 2.75rem;
}
.btn--fill {
  background: #000;
  color: #fff;
  box-sizing: border-box;
  border: 7px solid #fff;
  transition: 0.25s ease-in-out border;
}
.btn--fill:hover {
  border: 7px solid rgba(0, 0, 0, 0.2);
}
.btn--fill.btn--white {
  background: #fff;
  color: #000;
  border: #fff;
}
.btn--fill.btn--black {
  background: #000;
  color: #fff;
  border: #000;
}
@media (max-width: 767px) {
  .btn--fill.btn--white-sm {
    background: #fff;
    color: #000;
    border: #fff;
  }
  .btn--fill.btn--black-sm {
    background: #000;
    color: #fff;
    border: #000;
  }
}
.btn--underline {
  color: #000;
  position: relative;
  margin-top: 15px;
  padding: 15px 0 2px;
  box-sizing: border-box;
}
.btn--underline:after {
  content: "";
  width: 50%;
  opacity: 0;
  transition: 0.25s ease-in-out all;
  border-bottom: 1px solid #000;
  position: absolute;
  display: block;
  top: 100%;
}
.btn--underline:hover:after {
  width: 100%;
  opacity: 1;
}
.btn--underline.btn--white {
  color: #fff;
}
.btn--underline.btn--white:after {
  border-bottom: 1px solid #fff;
}
.btn--underline.btn--black {
  color: #000;
}
.btn--underline.btn--black:after {
  border-bottom: 1px solid #000;
}
.btn--outline {
  border: 1px solid #000;
  display: inline-block;
  background: transparent;
  transition: 0.25s ease-in-out all;
  color: #000;
}
.btn--outline:hover {
  background: #fff;
}
.btn--outline.btn--white {
  border: 1px solid #fff;
  color: #fff;
}
.btn--outline.btn--white:hover {
  background: #000;
}
.btn--outline.btn--black {
  border: 1px solid #000;
  color: #000;
}
.btn--outline.btn--black:hover {
  background: #fff;
}

/* ─── BASE ─────────────────────────────────────────────────────────────────── */
.coachella {
  font-family: "GT America Standard", sans-serif;
  color: #000;
}
.coachella * {
  box-sizing: border-box;
}
.coachella img {
  max-width: 100%;
  display: block;
}
.coachella p {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 16px;
 letter-spacing:normal;
}
.coachella p a {
  font-size: 16px;
  font-weight: 700;
   text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 768px) {
  .coachella p {
    font-size: 20px;
  }
  .coachella p a {
    font-size: 20px;
  }
}
.coachella p:last-child {
  margin-bottom: 0;
}
.coachella h2 {
  font-size: 35px !important;
  line-height: 1.05;
  margin: 0;
  font-weight: 700;
}
@media (min-width: 768px) {
  .coachella h2 {
    font-size: 45px !important;
  }
}
@media (min-width: 1024px) {
  .coachella h2 {
    font-size: 50px !important;
  }
}

.c-section {
  display: flex;
  flex-flow: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .c-section {
    flex-flow: row;
    gap: 50px;
  }
}
.c-section--full {
  flex-flow: column;
}
@media (min-width: 768px) {
  .c-section--full {
    gap: 30px;
  }
}
.c-section__num {
  display: block;
  font-size: 60px;
  font-weight: 400;
  color: rgb(231, 216, 194);
  line-height: 0.8;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .c-section__num {
    font-size: 120px;
  }
}
.c-section__info {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
  width: 100%;
  padding:0 30px;
}
@media (min-width: 768px) {
  .c-section__info {
    width: 490px;
    padding:0;
  }
}
.c-section--full .c-section__info {
  width: 100%;
}
.c-section__info .c-section__num {
  grid-column: 1/2;
  grid-row: 1/2;
}
.c-section__info h2 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.c-section__info > :last-child {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width:768px){
 .c-section__info.c-section__info--full > :last-child{
     grid-column: 2/3;
 }
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.c-hero {
  position: relative;
  padding-bottom: 120px;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .c-hero {
    min-height: 80vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.c-hero__media {
  position: absolute;
  inset: 0;
}
.c-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-hero__content {
  position: relative;
  z-index: 1;
  padding: 40px;
  color: #000;
  width:100%;
}
@media (min-width: 768px) {
  .c-hero__content {
    padding: 60px;
  }
}
@media (min-width: 1440px) {
  .c-hero__content {
    padding: 80px 120px;
    max-width: 1100px;
    box-sizing: content-box;
  }
}
.c-hero__lockup {
  margin-bottom: 20px;
  width: 670px;
  max-width: 100dvw;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .c-hero__lockup {
    margin-bottom: 35px;
  }
}
.c-hero__lockup img {
  height: auto;
  filter: brightness(0);
}
.c-hero h1 {
  font-size: clamp(46px, 7vw, 80px) !important;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 1080px;
  text-transform: none !important;
}

/* ─── 01 MERCHANDISE DROPS ──────────────────────────────────────────────────── */
.c-drops {
  background: #232323;
  color: #fff;
  gap: 0;
}
.c-drops__top {
  display: grid;
  gap: 3px;
  padding: 30px 10px;
}
@media (min-width: 768px) {
  .c-drops__top {
    grid-template-columns: 1fr 1fr;
    background: url("https://www.ab-dev.com/bellacanvas/coachella/empire-polo-club-bg.jpg") 70% 0%/auto 100% no-repeat;
    padding: 120px 60px 30px;
  }
}
@media (min-width: 1440px) {
  .c-drops__top {
    background-position: 60% 50%;
  }
}
.c-drops .c-section__num {
  color: rgba(220, 198, 167, 0.4);
}
.c-drops h2 {
  color: #fff !important;
  text-transform: none !important;
}
.c-drops p {
  color: #fff;
}
.c-drops__link {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.c-drops__link:hover {
 color:#fff;
}
.c-drops__graphic {
  overflow: hidden;
  aspect-ratio: 1;
  display: none;
}
@media (min-width: 600px) {
  .c-drops__graphic {
    aspect-ratio: auto;
  }
}
.c-drops__marquee {
  overflow: hidden;
  width: 100%;
  padding: 0 0 30px;
}
@media (min-width:768px){
  .c-drops__marquee {
    padding-top:30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-drops__marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .c-drops__marquee .c-drops__marquee-track {
    animation: none;
    width: max-content;
  }
}
.c-drops__marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
/* .c-drops__marquee-track:hover {
  animation-play-state: paused;
} */
.c-drops__product {
  flex: 0 0 auto;
  width: 33.3333333333dvw;
  aspect-ratio: 484/504;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-drops__product {
    width: 20dvw;
  }
}
@media (min-width: 1440px) {
  .c-drops__product {
    width: 16.6666666667dvw;
  }
}
/* .c-drops__product:hover img {
  transform: scale(1.05);
} */
.c-drops__product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.25s ease-in-out transform;
}

/* ─── SHARED MOMENT STYLES (02 – 05 headers) ────────────────────────────────── */
.c-moment {
  padding: 30px 10px 10px;
}
@media (min-width: 768px) {
  .c-moment {
    padding: 80px 60px;
  }
}
@media (min-width: 1440px) {
  .c-moment {
    padding: 100px 120px;
  }
}
.c-moment__text {
  max-width: 900px;
  margin-bottom: 40px;
}

/* ─── MULTISECTION ───────────────────────────────────────────────────────────── */
.c-multi-section {
  background: #EAE9E6;
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 30px 10px 10px;
}
@media (min-width:1024px){
  .c-multi-section {
    padding:70px 5%;
  }
}
@media (min-width: 1200px) {
  .c-multi-section {
    gap: 80px;
    padding: 70px 120px;
  }
}
.c-multi-section .c-section__num {
  color: #C1B09A;
}


/* ─── VIDEO FACADE ───────────────────────────────────────────────────────────── */
.c-video-facade {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}
.c-video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.c-video-facade:hover img {
  opacity: 0.85;
}
.c-video-facade__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 55px;
  border: none;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  padding-left: 4px; /* optical centering for play triangle */
  opacity:.8;
}
.c-video-facade__play svg{
	height:100%;
 	width:100%;
}
.c-video-facade__play:hover, .c-video-facade:hover .c-video-facade__play{
  opacity:1;
  transform: scale(1.08);
}
@media (min-width:1024px){
 .c-section--full .c-video-facade__play{
 	width:80px;
    height:80px;
 }
}

/* ─── VIDEO EMBED ────────────────────────────────────────────────────────────── */
.c-video-wrap {
  position: relative;
  width: 100%;
}
.c-video-wrap iframe {
  position: static;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

/* ─── SPLIT SECTIONS (03 & 04) ──────────────────────────────────────────────── */
.c-split-moment {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .c-split-moment {
    flex-direction: row;
  }
}
.c-split-moment__media {
  overflow: hidden;
  line-height: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .c-split-moment__media {
    flex: 1 1 0;
  }
}
.c-split-moment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-split-moment__content {
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .c-split-moment--reverse .c-section__media {
    order: -1;
  }
}

/* ─── 05 MEETING YOU ─────────────────────────────────────────────────────────── */
.c-meeting__slideshow {
  position: relative;
  flex: 1 1 0;
}
.c-meeting__content h2{
     line-height: 38px;
    align-self: flex-end;
}
.c-meeting__content h2 em {
  font-style: normal;
  font-size: 0.8em;
}
@media (min-width:768px){
 .c-meeting__content h2 em {
   font-size: 30px;
 }
}

/* ─── SLIDESHOW ──────────────────────────────────────────────────────────────── */
.c-slideshow {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.c-slideshow__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.c-slideshow__slide {
  flex: 0 0 100%;
  height: 100%;
  line-height: 0;
}
.c-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-slideshow__btn {
  position: absolute;
  bottom: 0;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  width: 35px;
  height: 48px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.c-slideshow__btn svg{
 height:24px;
}
.c-slideshow__btn:hover {
  background: #000;
}
.c-slideshow__btn--prev {
  right: 38px;
}
.c-slideshow__btn--next {
  right: 0;
}
@media (min-width:1200px){
  .c-slideshow__btn{
    width:67px;
    height:92px;
  }
  .c-slideshow__btn svg{
    height:40px;
  }
  .c-slideshow__btn--prev{
    right:69px;
  }
}

/* ─── CONTACT FORM ───────────────────────────────────────────────────────────── */
.c-contact {
  padding: 30px 20px;
  background: #fff;
}
@media (min-width: 768px) {
  .c-contact {
    padding: 90px 60px;
  }
}
.c-contact__inner {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
.c-contact h2 {
  font-size: 24px !important;
  text-align: center;
  margin-bottom: 10px;
  text-transform: none !important;
  letter-spacing: -0.05rem;
}
@media (min-width: 768px) {
  .c-contact h2 {
    font-size: 32px !important;
  }
}
p.c-contact__sub {
  text-align: center;
  margin-bottom: 30px;
}
.c-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-contact__field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1e1e1e;
  margin-bottom: 0;
}
.c-contact__field input,
.c-contact__field select,
.c-contact__field textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #fff;
  border-radius: 0;
  appearance: none;
  outline: none;
  transition: border-color 0.2s;
}
.c-contact__field input:focus,
.c-contact__field select:focus,
.c-contact__field textarea:focus {
  outline: 1px solid #000;
  background: rgb(243, 244, 245);
}
.c-contact__field input::placeholder,
.c-contact__field select::placeholder,
.c-contact__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
 font-weight:400
}
.c-contact__field select {
  background-image: url('data:image/svg+xml,<svg width="16" height="9" viewBox="0 0 16 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.38281 8.54297L0.351562 1.51172C0 1.19531 0 0.667969 0.351562 0.316406C0.667969 0 1.19531 0 1.54688 0.316406L7.98047 6.75L14.4141 0.316406C14.7305 0 15.2578 0 15.5742 0.316406C15.9258 0.632812 15.9258 1.19531 15.5742 1.51172L8.54297 8.54297C8.22656 8.85938 7.69922 8.85938 7.38281 8.54297Z" fill="black" fill-opacity="0.5"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.c-contact__field textarea {
  min-height: 120px;
  resize: vertical;
}
.c-contact .btn {
  align-self: stretch;
}
@media (min-width: 768px) {
  .c-contact .btn {
    align-self: center;
    width: 300px;
    border-radius: 0;
  }
}

/* ─── MARQUEE KEYFRAME ───────────────────────────────────────────────────────── */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
