﻿:root {

  --color-bg: #ffffff;

  --color-bg-2: #f8f9fa;

  --color-surface: #f1f3f4;

  --color-card: #ffffff;

  --color-card-alt: #f8f9fa;

  --color-text: #2c3e50;

  --color-muted: #6c757d;

  --color-brand: #ffd166;

  --color-brand-accent: #06d6a0;

  --color-accent: #ef476f;

  --color-border: rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.15);

  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.1);

  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.08);

  --radius-lg: 24px;

  --radius-md: 18px;

  --radius-sm: 12px;

  --max-width: 1120px;

  --space-0: 0.25rem;

  --space-1: 0.5rem;

  --space-2: 0.75rem;

  --space-3: 1rem;

  --space-4: 1.5rem;

  --space-5: 2rem;

  --space-6: 3rem;

  --space-7: 4rem;

  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --font-display: 'Playfair Display', 'Times New Roman', serif;

  --transition: 220ms ease;

}



*, *::before, *::after {

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

  background: var(--color-bg);

}



body {

  margin: 0;

  min-height: 100vh;

  font-family: var(--font-body);

  line-height: 1.6;

  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 100%);

  color: var(--color-text);

}



a {

  color: var(--color-brand);

  text-decoration: none;

}



a:hover,

a:focus-visible {

  color: var(--color-brand-accent);

}



img {

  max-width: 100%;

  display: block;

  height: auto;

}



button {

  font: inherit;

  cursor: pointer;

  border: none;

  background: none;

  color: inherit;

}



.wrap {

  max-width: var(--max-width);

  margin: 0 auto;

  padding: 0 var(--space-3);

}



.skip-link {

  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  top: -200px;

  padding: var(--space-2) var(--space-3);

  background: var(--color-brand);

  color: #111;

  border-radius: var(--radius-sm);

  z-index: 120;

  transition: top var(--transition);

}



.skip-link:focus {

  top: 16px;

}



.sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}



.site-header {

  position: sticky;

  top: 0;

  z-index: 100;

  backdrop-filter: saturate(135%) blur(14px);

  background: rgba(12, 15, 16, 0.66);

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

}



.site-header__inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: var(--space-2) var(--space-3);

}



.brand {

  display: inline-flex;

  align-items: center;

  gap: var(--space-2);

  color: var(--color-text);

}



.brand__text {

  display: flex;

  flex-direction: column;

  font-size: 0.85rem;

  letter-spacing: 0.04em;

  text-transform: uppercase;

}



.brand__title {

  font-weight: 700;

  font-size: 0.95rem;

}



.brand__tagline {

  color: var(--color-brand-accent);

  font-weight: 600;

}



.nav-toggle {

  width: 44px;

  height: 44px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  position: relative;

  border: 1px solid rgba(255, 255, 255, 0.8);

  transition: background var(--transition), border-color var(--transition);

}



.nav-toggle span[aria-hidden] {

  width: 18px;

  height: 2px;

  background: #ffffff;

  border-radius: 999px;

  display: block;

  position: absolute;

  transition: transform var(--transition), opacity var(--transition);

}



.nav-toggle span[aria-hidden]:nth-child(2) {

  transform: translateY(-6px);

}



.nav-toggle span[aria-hidden]:nth-child(3) {

  transform: translateY(6px);

}



.nav-toggle[aria-expanded="true"] span[aria-hidden]:nth-child(2) {

  transform: rotate(45deg);

}



.nav-toggle[aria-expanded="true"] span[aria-hidden]:nth-child(3) {

  transform: rotate(-45deg);

}



.nav-toggle[aria-expanded="true"] span[aria-hidden]:nth-child(4) {

  opacity: 0;

}



.site-nav {

  position: fixed;

  left: var(--space-3);

  right: var(--space-3);

  top: 76px;

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(0, 0, 0, 0.08);

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-md);

  transform: translateY(-130%);

  opacity: 0;

  pointer-events: none;

  transition: transform var(--transition), opacity var(--transition);

}



.site-nav ul {

  list-style: none;

  margin: 0;

  padding: var(--space-3);

  display: flex;

  flex-direction: column;

  gap: var(--space-2);

}



.site-nav a {

  color: var(--color-text);

  font-weight: 600;

  padding: var(--space-2) var(--space-3);

  border-radius: var(--radius-sm);

  display: block;

  transition: background var(--transition), color var(--transition);

}



.site-nav a:hover,

.site-nav a:focus-visible {

  background: rgba(0, 0, 0, 0.08);

  color: var(--color-brand);

}



.site-nav__cta a {

  background: var(--color-brand);

  color: #000 !important;

  text-decoration: none;

  text-align: center;

}



.site-nav__cta a:hover,

.site-nav__cta a:focus-visible {

  background: var(--color-brand-accent);

  color: #fff !important;

  text-decoration: none;

}



.site-nav__cta a::after {

  display: none !important;

}



.site-nav.is-open {

  transform: translateY(0);

  opacity: 1;

  pointer-events: auto;

}



body[data-nav-open="true"] {

  overflow: hidden;

}



body[data-modal-open="true"] {

  overflow: hidden;

}



@media (min-width: 900px) {

  .nav-toggle {

    display: none;

  }



  .site-nav {

    position: static;

    transform: none;

    opacity: 1;

    pointer-events: auto;

    background: transparent;

    border: none;

    box-shadow: none;

  }



  .site-nav ul {

    flex-direction: row;

    align-items: center;

      padding: 0;

  }



  .site-nav a {

    padding: var(--space-1) var(--space-2);

  }



  .site-nav__cta {

    margin-left: var(--space-3);

  }



  .site-nav__cta a {

    padding: var(--space-1) var(--space-3);

    border-radius: 999px;

  }

}



.hero {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.hero__media {

  position: absolute;

  inset: 0;

  overflow: hidden;

}



.hero__media::after {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);

  z-index: 1;

}



.hero__poster,

.hero__video {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

}



.hero__poster img,

.hero__video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.hero__video {

  opacity: 0;

  transition: opacity 600ms ease;

}



.hero__media.is-active .hero__video {

  opacity: 1;

}



.hero__play {

  position: absolute;

  left: 50%;

  bottom: clamp(18%, 12vw, 160px);

  transform: translateX(-50%);

  display: none;

  align-items: center;

  gap: var(--space-1);

  padding: var(--space-2) var(--space-3);

  background: rgba(12, 18, 20, 0.75);

  border: 1px solid rgba(0, 0, 0, 0.3);

  backdrop-filter: blur(6px);

  border-radius: 999px;

  z-index: 2;

  color: var(--color-text);

  font-weight: 600;

}



.hero__play span[aria-hidden] {

  font-size: 1.2rem;

}



.hero__play[hidden] {

  display: none;

}



.hero__content {

  position: relative;

  z-index: 2;

  padding: clamp(4rem, 13vw, 8rem) 0 var(--space-7);

  text-align: center;

}



@media (max-width: 767px) {

  .hero__content {

    padding: 3.5rem 0 var(--space-6);

  }

}



.hero__eyebrow {

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: var(--color-brand-accent);

  font-weight: 700;

  margin-bottom: var(--space-2);

}



#hero-title {

  font-family: var(--font-display);

  font-size: clamp(2rem, 5vw, 4.2rem);

  letter-spacing: 0.01em;

  margin: 0 0 var(--space-3);

  line-height: 1.1;

}



@media (max-width: 767px) {

  #hero-title {

    font-size: clamp(1.8rem, 8vw, 2.4rem);

    margin: 0 0 var(--space-2);

  }

}



.hero__lead {

  max-width: 680px;

  margin: 0 auto var(--space-4);

  color: var(--color-muted);

  font-size: 1.05rem;

  line-height: 1.6;

}



@media (max-width: 767px) {

  .hero__lead {

    font-size: 0.95rem;

    margin: 0 auto var(--space-3);

    padding: 0 var(--space-2);

  }

}



.hero__actions {

  display: flex;

  flex-wrap: wrap;

  gap: var(--space-2);

  justify-content: center;

}



@media (min-width: 768px) {

  body:not([data-hero-manual="true"]) .hero__play {

    display: none;

  }

}



.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: var(--space-1);

  padding: var(--space-2) var(--space-3);

  border-radius: var(--radius-sm);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  border: 1px solid rgba(0, 0, 0, 0.22);

  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);

}



.btn:hover,

.btn:focus-visible {

  transform: translateY(-2px);

  box-shadow: var(--shadow-sm);

}



.btn--primary {

  background: var(--color-brand);

  color: #111;

  border-color: transparent;

}



.btn--primary:hover,

.btn--primary:focus-visible {

  background: var(--color-brand-accent);

  color: #022016;

}



.btn--ghost {

  background: rgba(0, 0, 0, 0.08);

  color: var(--color-text);

}



.section {

  padding: clamp(3.5rem, 10vw, 6rem) 0;

}



.section__header {

  display: grid;

  gap: var(--space-2);

  margin-bottom: clamp(2rem, 6vw, 3rem);

}



.eyebrow {

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: var(--color-brand-accent);

  font-weight: 700;

  font-size: 0.85rem;

}



.section h2 {

  font-family: var(--font-display);

  font-size: clamp(2rem, 4vw, 2.8rem);

  margin: 0;

}



.lead {

  color: var(--color-muted);

  font-size: 1.05rem;

  max-width: 780px;

}



.about .lead {

  max-width: 720px;

}

.rings {

  background: var(--color-bg-2);

}



.about__inner {

  display: grid;

  gap: var(--space-6);

  align-items: center;

}

.about__content {

  max-width: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.about__images {

  position: relative;

  height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;

}



.about__image {

  position: absolute;

  width: 340px;

  height: 240px;

  border-radius: var(--radius-md);

  overflow: hidden;

  box-shadow: var(--shadow-lg);

  border: 4px solid #ffffff;

  transition: transform var(--transition), box-shadow var(--transition);

}



.about__image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.about__image--1 {

  transform: rotate(-8deg) translateX(-160px) translateY(-90px);

  z-index: 1;

  transition: transform 0.6s ease;

}



.about__image--2 {

  transform: rotate(5deg) translateX(0px) translateY(40px);

  z-index: 3;

  transition: transform 0.6s ease;

}



.about__image--3 {

  transform: rotate(-3deg) translateX(160px) translateY(-90px);

  z-index: 2;

  transition: transform 0.6s ease;

}



.about__images:hover .about__image--1 {

  transform: rotate(-8deg) translateX(-160px) translateY(-90px);

}



.about__images:hover .about__image--2 {

  transform: rotate(5deg) translateX(0px) translateY(40px);

}



.about__images:hover .about__image--3 {

  transform: rotate(-3deg) translateX(160px) translateY(-90px);

}



.about__image:hover {

  transform: rotate(0deg) scale(1.05) !important;

  box-shadow: var(--shadow-lg);

  z-index: 10;

}



.about__video {

  position: relative;

  width: 100%;

  max-width: 100%;

  margin: 0 auto;

  border-radius: var(--radius-md);

  overflow: hidden;

  box-shadow: var(--shadow-lg);

  background: #000;

  aspect-ratio: 16 / 9;

  border: 2px solid #ffffff;

}


.about__video-media {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}


@media (min-width: 768px) {

  .about__inner {

    grid-template-columns: 1fr 1fr;

    gap: var(--space-7);

  }



  .about__images {

    height: 400px;

  }



  .about__video {

    margin-left: auto;

    margin-right: 0;

    max-width: 520px;

  }



  .about__image {

    width: 280px;

    height: 200px;

  }



  /* On larger screens, images start overlapped and spread on hover */

  .about__image--1 {

    transform: rotate(-8deg) translateX(-100px) translateY(-60px);

  }



  .about__image--2 {

    transform: rotate(5deg) translateX(0px) translateY(0px);

  }



  .about__image--3 {

    transform: rotate(-3deg) translateX(100px) translateY(-60px);

  }

}



@media (min-width: 1024px) {

  .about__inner {

    gap: var(--space-8);

  }



  .about__images {

    height: 450px;

  }



  .about__video {

    margin-left: auto;

    margin-right: 0;

    max-width: 540px;

  }



  .about__image {

    width: 320px;

    height: 220px;

  }

}



@media (min-width: 1200px) {

  .about__images {

    height: 500px;

  }



  .about__video {

    max-width: 560px;

    margin-left: auto;

    margin-right: 0;

  }



  .about__image {

    width: 360px;

    height: 250px;

  }

}



.ring-grid {

  display: grid;

  gap: var(--space-4);

  grid-template-columns: 1fr;

}

@media (min-width: 768px) {

  .ring-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media (min-width: 1024px) {

  .ring-grid {

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 1fr;

  }

  .ring-card {

    height: 100%;

  }

  .ring-card__inner {

    height: 100%;

  }

}



.ring-card {

  position: relative;

  width: 100%;

  perspective: 1000px;

  min-height: 280px;

}



.ring-card__inner {

  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  padding: var(--space-5);

  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);

  border-radius: var(--radius-lg);

  border: 4px solid;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  overflow: hidden;

}



.ring-card__inner::before {

  content: '';

  position: absolute;

  top: -50%;

  left: -50%;

  width: 200%;

  height: 200%;

  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);

  opacity: 0;

  transition: opacity 0.4s ease;

}



.ring-card:hover .ring-card__inner {

  transform: translateY(-12px) scale(1.02);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

  border-width: 5px;

}



.ring-card:hover .ring-card__inner::before {

  opacity: 1;

  animation: shimmer 2s infinite;

}



@keyframes shimmer {

  0% {

    transform: translate(-50%, -50%) rotate(0deg);

  }

  100% {

    transform: translate(-50%, -50%) rotate(360deg);

  }

}



.ring-card__icon {

  width: 140px;

  height: 140px;

  flex-shrink: 0;

  position: relative;

  margin-bottom: var(--space-3);

  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}



.ring-card:hover .ring-card__icon {

  transform: rotate(360deg) scale(1.1);

}



.ring-card__icon::before {

  content: '';

  position: absolute;

  inset: -15px;

  border-radius: 50%;

  background: inherit;

  opacity: 0.1;

  z-index: -1;

  transition: all 0.4s ease;

}



.ring-card:hover .ring-card__icon::before {

  inset: -25px;

  opacity: 0.2;

}



.ring-card__icon img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));

}



.ring-card__content {

  display: flex;

  flex-direction: column;

  gap: var(--space-2);

  align-items: center;

  z-index: 1;

}



.ring-card__title {

  margin: 0;

  font-family: var(--font-display);

  font-size: clamp(1.5rem, 2.5vw, 1.8rem);

  color: var(--color-text);

  font-weight: 700;

  transition: all 0.3s ease;

}



.ring-card:hover .ring-card__title {

  transform: scale(1.05);

  color: #000;

}



.ring-card__subtitle {

  margin: 0;

  font-size: 0.85rem;

  color: var(--color-muted);

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  opacity: 0.8;

  transition: opacity 0.3s ease;

}



.ring-card:hover .ring-card__subtitle {

  opacity: 1;

}



.ring-card__description {

  margin: 0;

  font-size: 0.95rem;

  color: var(--color-text);

  line-height: 1.7;

  max-width: 90%;

  transition: color 0.3s ease;

}



.ring-card:hover .ring-card__description {

  color: #1a1a1a;

}



.ring-card__btn {

  margin-top: var(--space-2);

  align-self: center;

  border-radius: 999px;

  padding: var(--space-2) var(--space-5);

  font-size: 0.85rem;

  text-transform: uppercase;

  letter-spacing: 0.14em;

  font-weight: 700;

  position: relative;

  overflow: hidden;

  transition: all 0.3s ease;

}



.ring-card__btn::before {

  content: '';

  position: absolute;

  top: 50%;

  left: 50%;

  width: 0;

  height: 0;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.3);

  transform: translate(-50%, -50%);

  transition: width 0.6s, height 0.6s;

}



.ring-card__btn:hover::before {

  width: 300px;

  height: 300px;

}



.ring-card__btn:hover {

  transform: scale(1.05);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

}



.ring-card__inner--white-border {

  border-color: rgba(255, 255, 255, 0.88);

  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 250, 0.94) 100%);

}



.ring-card__inner--slider {

  display: block;

  height: 100%;

  padding: 0;

  border-radius: inherit;

  overflow: hidden;

}



.ring-slider {

  position: relative;

  width: 100%;

  height: 100%;

  min-height: 240px;

  border-radius: inherit;

  overflow: hidden;

  isolation: isolate;

  box-shadow: 0 12px 30px rgba(12, 15, 16, 0.18);

  background: transparent;

}



.ring-slider__slide {

  position: absolute;

  inset: 0;

  margin: 0;

  opacity: 0;

  transition: opacity 1s ease;

  pointer-events: none;

}



.ring-slider__slide.is-active {

  opacity: 1;

  z-index: 1;

}



.ring-slider__image {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  display: block;

}



@media (max-width: 640px) {

  .ring-card__icon {

    width: 100px;

    height: 100px;

  }



  .ring-card__inner {

    padding: var(--space-4);

  }



  .ring-card__inner--slider {

    padding: 0;

  }



  .ring-slider {

    min-height: 280px;

  }



  .ring-card {

    min-height: 320px;

  }

}




.rings__note {

  margin-top: var(--space-4);

  color: var(--color-muted);

  font-size: 0.95rem;

  text-align: center;

}



.gallery__grid {

  position: relative;

  min-height: 400px;

  display: flex;

  overflow-x: auto;

  overflow-y: hidden;

  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;

  gap: 0;

  padding: var(--space-4) 0;

  scrollbar-width: none;

}



.gallery__grid::-webkit-scrollbar {

  display: none;

}



@media (min-width: 768px) {

  .gallery__grid {

    min-height: 900px;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    align-items: center;

    gap: var(--space-3);

    padding: var(--space-6) 0;

    overflow: visible;

    scroll-snap-type: none;

  }

}



@media (min-width: 1024px) {

  .gallery__grid {

    position: relative;

    min-height: 700px;

  }

}



.gallery__item {

  position: relative;

  flex: 0 0 85%;

  scroll-snap-align: center;

  margin: 0 var(--space-2);

  width: 320px;

  height: 240px;

  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  cursor: pointer;

}



@media (min-width: 1024px) {

  .gallery__item {

    position: absolute;

    width: 380px;

    height: 280px;

  }



  .gallery__item:nth-child(1) {

    left: 2%;

    top: 8%;

    transform: rotate(-12deg);

    z-index: 1;

  }



  .gallery__item:nth-child(2) {

    left: 32%;

    top: 2%;

    transform: rotate(7deg);

    z-index: 3;

  }



  .gallery__item:nth-child(3) {

    right: 5%;

    top: 12%;

    transform: rotate(-6deg);

    z-index: 2;

  }



  .gallery__item:nth-child(4) {

    left: 8%;

    bottom: 15%;

    transform: rotate(9deg);

    z-index: 3;

  }



  .gallery__item:nth-child(5) {

    left: 35%;

    bottom: 8%;

    transform: rotate(-8deg);

    z-index: 4;

  }



  .gallery__item:nth-child(6) {

    right: 8%;

    bottom: 18%;

    transform: rotate(11deg);

    z-index: 1;

  }

}



@media (min-width: 1200px) {

  .gallery__item {

    width: 420px;

    height: 300px;

  }

}



.gallery__link {

  display: block;

  border-radius: var(--radius-sm);

  overflow: hidden;

  border: 8px solid #ffffff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  background: #ffffff;

  height: 100%;

}



.gallery__link::after {

  content: '';

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0);

  transition: background 0.3s ease;

  pointer-events: none;

}



.gallery__item:hover {

  transform: scale(1.15) rotate(0deg) !important;

  z-index: 100;

}



.gallery__item:hover .gallery__link {

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

  border-color: #fff;

}



.gallery__item:hover .gallery__link::after {

  background: rgba(0, 0, 0, 0.05);

}



.gallery__link picture,

.gallery__link img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



@media (min-width: 768px) and (max-width: 1023px) {

  .gallery__item {

    position: relative;

    transform: rotate(0deg) !important;

    flex: none;

    margin: 0;

  }



  .gallery__grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: var(--space-4);

    min-height: auto;

  }

}







.press {

  background: radial-gradient(circle at 20% 20%, rgba(6, 214, 160, 0.12), transparent 55%),

    radial-gradient(circle at 80% 10%, rgba(239, 71, 111, 0.16), transparent 60%);

}



.press__inner {

  display: grid;

  gap: var(--space-4);

  align-items: center;

}



.press__copy {

  display: grid;

  gap: var(--space-2);

}



.press__credit {

  color: var(--color-muted);

  font-size: 0.95rem;

}



.press__logos {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

}



.press__logos img {

  max-width: 200px;

  height: auto;

  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));

  transition: filter 0.3s ease;

}



.press__logos img:hover {

  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));

}



@media (min-width: 880px) {

  .press__inner {

    grid-template-columns: 2fr 1fr;

  }

}



.site-footer {

  border-top: 1px solid rgba(0, 0, 0, 0.06);

  background: rgba(248, 249, 250, 0.9);

}



.site-footer__inner {

  display: grid;

  gap: var(--space-4);

  padding: var(--space-7) var(--space-3) var(--space-6);

}



.site-footer__brand {

  display: grid;

  gap: var(--space-1);

  max-width: 260px;

}



.site-footer__title {

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.12em;

}



.site-footer__subtitle {

  margin: 0;

  color: var(--color-muted);

}



.site-footer__links {

  display: grid;

  gap: var(--space-3);

}



.site-footer__links a {

  color: var(--color-text);

  font-weight: 600;

  letter-spacing: 0.02em;

  transition: color 0.3s ease, transform 0.3s ease;

}



.footer-contact {

  display: flex;

  align-items: center;

  gap: var(--space-2);

  padding: var(--space-2);

  border-radius: var(--radius-sm);

  background: rgba(0, 0, 0, 0.03);

  transition: all 0.3s ease;

}



.footer-contact i {

  font-size: 1.4rem;

  color: var(--color-brand);

  transition: transform 0.3s ease;

}



.footer-contact:hover {

  background: rgba(0, 0, 0, 0.06);

  transform: translateX(4px);

}



.footer-contact:hover i {

  transform: scale(1.1);

  color: var(--color-brand-accent);

}



.social {

  display: flex;

  gap: var(--space-2);

  margin-top: var(--space-2);

}



.social a {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  background: rgba(0, 0, 0, 0.08);

  color: var(--color-text);

  font-weight: 700;

}

.social a i {

  font-size: 1.3rem;

}





.social a:hover,

.social a:focus-visible {

  background: var(--color-brand);

  color: #111;

}



.site-footer__legal {

  display: grid;

  gap: var(--space-1);

  font-size: 0.9rem;

  color: var(--color-muted);

}



.site-footer__legal a {

  color: var(--color-muted);

}



.site-footer__legal a:hover,

.site-footer__legal a:focus-visible {

  color: var(--color-brand);

}



@media (min-width: 820px) {

  .site-footer__inner {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }



  .site-footer__brand {

    align-self: flex-start;

  }



  .site-footer__legal {

    justify-self: end;

    text-align: right;

  }

}



.footer-stripe {

  background: var(--color-bg-2);

  border-top: 1px solid rgba(0, 0, 0, 0.06);

  padding: var(--space-4) 0;

}



.footer-stripe .wrap {

  text-align: center;

}



.footer-stripe p {

  margin: 0;

  font-size: 0.85rem;

  color: var(--color-muted);

}



.footer-stripe a {

  color: var(--color-brand);

  font-weight: 600;

  text-decoration: none;

  transition: color 0.3s ease;

}



.footer-stripe a:hover,

.footer-stripe a:focus-visible {

  color: var(--color-brand-accent);

  text-decoration: underline;

}



.modal {

  border: none;

  padding: 0;

  color: inherit;

  background: transparent;

  max-width: 100vw;

  max-height: 100vh;

  overflow-y: auto;

}



.modal::backdrop {

  background: rgba(0, 0, 0, 0.92);

  backdrop-filter: blur(12px);

}



.modal__inner {

  background: linear-gradient(145deg, rgba(20, 20, 25, 0.98) 0%, rgba(10, 10, 15, 0.98) 100%);

  border-radius: 0;

  border: none;

  box-shadow: none;

  margin: 0;

  padding: 0;

  width: 100vw;

  height: 100vh;

  max-width: 100vw;

  display: flex;

  flex-direction: column;

  position: relative;

  overflow: auto;

}



.modal__inner::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);

}



@media (min-width: 768px) {

  .modal__inner {

    margin: 6vh auto;

    width: min(900px, 90vw);

    height: auto;

    padding: var(--space-2);

    border-radius: var(--radius-lg);

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.2);

    overflow: hidden;

  }

}



@media (min-width: 1024px) {

  .modal__inner {

    width: min(1150px, 86vw);

  }

}



@media (min-width: 1400px) {

  .modal__inner {

    width: min(1250px, 82vw);

  }

}



.modal__header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: var(--space-3) var(--space-3);

  background: rgba(255, 255, 255, 0.02);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  flex-shrink: 0;

}



.modal__header h2 {

  color: rgba(255, 255, 255, 0.95);

  font-family: var(--font-display);

  font-size: clamp(1.2rem, 2.5vw, 1.6rem);

  font-weight: 600;

  letter-spacing: 0.02em;

  margin: 0;

}



.modal__body {

  padding: var(--space-3);

  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

  overflow: auto;

}



.modal__close {

  width: 44px;

  height: 44px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  background: rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.9);

  font-size: 1.5rem;

  border: 1px solid rgba(255, 255, 255, 0.15);

  transition: all 0.3s ease;

  cursor: pointer;

}



.modal__close:hover,

.modal__close:focus-visible {

  background: rgba(255, 255, 255, 0.2);

  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.3);

  transform: rotate(90deg);

}



.modal__video {

  width: 100%;

  max-height: 70vh;

  border-radius: 0;

  border: none;

  box-shadow: none;

  background: #000;

  aspect-ratio: 16 / 9;

}



@media (min-width: 768px) {

  .modal__video {

    max-height: 62vh;

    border-radius: var(--radius-md);

    border: 2px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);

  }

}



@media (min-width: 1024px) {

  .modal__video {

    max-height: 66vh;

  }

}



.modal__caption {

  margin: var(--space-3) 0 0;

  font-size: 0.85rem;

  color: rgba(255, 255, 255, 0.6);

  text-align: center;

  padding: 0 var(--space-2);

}



.modal__caption a {

  color: rgba(255, 255, 255, 0.85);

  text-decoration: underline;

  text-decoration-color: rgba(255, 255, 255, 0.3);

  transition: all 0.3s ease;

  font-weight: 500;

}



.modal__caption a:hover {

  color: #ffffff;

  text-decoration-color: rgba(255, 255, 255, 0.8);

}



.modal__figure {

  margin: 0;

  text-align: center;

}



.modal__figure img {

  max-width: 100%;

  border-radius: var(--radius-sm);

  box-shadow: var(--shadow-md);

}



.modal__figure figcaption {

  margin-top: var(--space-2);

  color: var(--color-muted);

}



.modal--lightbox .modal__inner {

  width: min(860px, 94vw);

}



.no-js {

  margin: var(--space-3);

  padding: var(--space-3);

  border-radius: var(--radius-sm);

  background: rgba(0, 0, 0, 0.1);

  text-align: center;

}



@media (prefers-reduced-motion: reduce) {

  *, *::before, *::after {

    transition-duration: 1ms !important;

    animation-duration: 1ms !important;

  }

}



.hero__actions .btn {

  border-radius: 999px;

  padding: var(--space-2) var(--space-4);

}



/* Header & hero redesign overrides */

.site-header {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 200;

  padding-block: var(--space-3);

  background: transparent;

  border-bottom: none;

  backdrop-filter: none;

  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);

}



.site-header::before {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(4, 64, 82, 0.9) 0%, rgba(4, 64, 82, 0.4) 60%, transparent 100%);

  z-index: 0;

  pointer-events: none;

  opacity: 0;

  transition: opacity var(--transition);

}



.site-header__inner {

  position: relative;

  z-index: 1;

  gap: var(--space-5);

}



.brand {

  flex-direction: column;

  align-items: flex-start;

  gap: 0;

  text-decoration: none;

  color: #fff;

}



.brand img {

  display: block;

}



.brand__text {

  display: none;

}



.brand__title {

  font-family: 'Great Vibes', cursive;

  font-weight: 400;

  font-size: clamp(2rem, 4vw, 2.8rem);

  color: #fff;

  letter-spacing: 0;

}



.brand__tagline {

  font-size: 0.7rem;

  letter-spacing: 0.5em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.7);

}



@media (max-width: 899px) {

  .site-header {

    padding-block: var(--space-2);

  }



  .brand__title {

    font-size: clamp(1.6rem, 7vw, 2.2rem);

  }



  .brand__tagline {

    letter-spacing: 0.35em;

  }

}



@media (min-width: 900px) {

  .site-header__inner {

    align-items: center;

  }



  .site-nav ul {

    gap: var(--space-4);

  }



  .site-nav a {

    position: relative;

    padding: var(--space-1) 0;

    text-transform: uppercase;

    letter-spacing: 0.26em;

    font-size: 0.78rem;

    color: rgba(255, 255, 255, 0.82);

  }



  .site-nav a::after {

    content: '';

    position: absolute;

    left: 0;

    right: 0;

    bottom: -0.6rem;

    height: 2px;

    background: var(--color-brand);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform var(--transition);

  }



  .site-nav a:hover::after,

  .site-nav a:focus-visible::after {

    transform: scaleX(1);

  }



  .site-nav__cta a {

    margin-left: var(--space-4);

    padding: var(--space-1) var(--space-3);

    border-radius: 999px;

    letter-spacing: 0.3em;

  }

}



.hero {

  text-align: center;

  min-height: 100vh;

  height: 100vh;

}



.hero__media::after {

  background: linear-gradient(180deg, rgba(4, 64, 82, 0.8) 0%, rgba(4, 64, 82, 0.45) 50%, rgba(12, 17, 19, 0.9) 100%);

}



.hero__content {

  position: relative;

  z-index: 2;

  padding-top: clamp(5rem, 12vw, 11rem);

}



.hero__eyebrow {

  text-transform: uppercase;

  letter-spacing: 0.45em;

  font-size: 0.78rem;

  color: rgba(255, 255, 255, 0.7);

  margin-bottom: var(--space-3);

}



.hero__content h1 {

  font-family: var(--font-display);

  text-transform: uppercase;

  letter-spacing: 0.14em;

  font-size: clamp(2.6rem, 6vw, 4.6rem);

  color: #fff;

  margin-bottom: var(--space-3);

}



.hero__lead {

  max-width: 720px;

  margin: 0 auto var(--space-5);

  font-size: 0.95rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.78);

}



.hero__actions {

  justify-content: center;

  gap: var(--space-3);

}



.hero__actions .btn--primary {

  background: #d98e3f;

  border: none;

  color: #111;

  letter-spacing: 0.24em;

  text-transform: uppercase;

  padding: var(--space-2) clamp(2.4rem, 6vw, 3.6rem);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

}



.hero__actions .btn--primary:hover,

.hero__actions .btn--primary:focus-visible {

  background: #f4a24f;

  color: #111;

}



.hero__actions .btn--ghost {

  border-color: rgba(0, 0, 0, 0.5);

  color: rgba(255, 255, 255, 0.85);

  text-transform: uppercase;

  letter-spacing: 0.22em;

}



.hero__scroll {

  margin-top: var(--space-5);

  display: inline-flex;

  flex-direction: column;

  align-items: center;

  gap: var(--space-1);

  font-size: 0.72rem;

  letter-spacing: 0.4em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.6);

}



.hero__scroll::before {

  content: '';

  width: 1px;

  height: 46px;

  background: rgba(255, 255, 255, 0.4);

}



@supports (height: 100svh) {

  .hero {

    min-height: 100svh;

    height: 100svh;

  }

}



body[data-header-scrolled="true"] .site-header {

  backdrop-filter: saturate(140%) blur(14px);

}



body[data-header-scrolled="true"] .site-header::before {

  opacity: 1;

}



.section {

  scroll-margin-top: clamp(5rem, 10vw, 6.5rem);

}
