:root {
  --gold: #c8b03a;
  --bg-dark: #050505;
  --border-subtle: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

/* Navbar */
.site-navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.site-navbar .navbar-brand {
  padding: 0;
  margin-right: 1rem;
}

.site-navbar .navbar-brand img {
  height: 80px;
  width: auto;
  display: block;
}

.site-navbar .nav-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s;
  padding: 0.5rem 1rem !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--gold) !important;
}

.lang-toggle {
  font-size: 10px;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle .lang-active {
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.lang-toggle .lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

.lang-toggle .lang-inactive {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-decoration: none;
}

.lang-toggle .lang-inactive:hover {
  color: #fff;
}

.lang-toggle a.lang-inactive {
  text-decoration: none;
}

.a11y-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.a11y-icon svg {
  width: 12px;
  height: 12px;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.hero-logo {
  height: 120px;
  width: auto;
}

.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 14px;
  }

  .hero-logo {
    height: 160px;
  }
}

.hero-scroll-indicator {
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Full-screen image sections */
.fullscreen-img-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.fullscreen-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.fullscreen-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.fullscreen-img-content {
  z-index: 2;
}

.fullscreen-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fullscreen-carousel .carousel-inner,
.fullscreen-carousel .carousel-item {
  height: 100%;
}

.fullscreen-carousel .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.95);
}

.carousel-arrow-prev {
  left: 1.5rem;
}

.carousel-arrow-next {
  right: 1.5rem;
}

/* Studio teaser */
.studio-teaser-section {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.studio-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .studio-heading {
    font-size: 4.5rem;
  }
}

/* Gold outline button */
.btn-gold-outline {
  display: inline-block;
  padding: 1.25rem 3rem;
  border: 4px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-gold-outline:hover {
  background-color: #0a261a;
  border-color: var(--gold);
  color: #fff;
}

.btn-gold-outline-sm {
  padding: 1rem 3rem;
  border-width: 1px;
  font-size: 12px;
  letter-spacing: 0.3em;
}

.btn-gold-outline-sm:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Legal Pages (Privacy, Terms, Accessibility) */
.legal-section {
  background: var(--bg-dark);
  padding: 10rem 0 6rem;
}

.legal-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .legal-heading {
    font-size: 3.75rem;
  }
}

.legal-date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.legal-intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
}

.legal-body {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .legal-body {
    font-size: 15px;
  }
}

.legal-body h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin: 2.5rem 0 1rem;
}

.legal-body strong {
  color: #fff;
}

.legal-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}

.legal-body a:hover {
  color: #fff;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.legal-body ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.legal-body ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Contact Page */
.contact-section {
  background: var(--bg-dark);
  padding: 10rem 0 6rem;
}

.contact-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .contact-heading {
    font-size: 3.75rem;
  }
}

.contact-detail {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  transition: color 0.3s;
}

a.contact-detail:hover {
  color: var(--gold);
}

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding: 0 0 0.75rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-input:focus {
  border-color: var(--gold);
}

.contact-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c5a059' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.contact-select option {
  background: #111;
  color: #fff;
}

textarea.contact-input {
  resize: none;
}

/* Contact Info Page */
.contact-info-hero {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background: var(--bg-dark);
}

.contact-info-details {
  background: #000;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-icon {
  color: var(--gold);
}

.contact-info-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.contact-info-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.contact-info-link:hover {
  color: var(--gold);
}

.contact-info-social {
  background: var(--bg-dark);
  padding: 4rem 0;
}

.contact-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.3s;
}

.contact-social-link:hover {
  color: var(--gold);
}

/* Jewelry Page */
.jewelry-hero {
  position: relative;
  min-height: 60vh;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #111;
}

.jewelry-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 700;
}

.jewelry-showcase {
  background: var(--bg-dark);
  padding: 6rem 0;
}

.jewelry-main-img {
  aspect-ratio: 1 / 1;
  background: #111;
  overflow: hidden;
}

.jewelry-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jewelry-card-img {
  aspect-ratio: 1 / 1;
}

/* Studio Page */
.studio-video-section {
  height: 85vh;
}

video.studio-hero-bg,
.studio-hero-bg {
  filter: brightness(0.5) grayscale(100%);
}

.studio-hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 768px) {
  .studio-hero-title {
    font-size: 4.5rem;
  }
}

.studio-description-section {
  background: #000;
  padding: 6rem 0;
}

.studio-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .studio-description {
    font-size: 1.15rem;
  }
}

.studio-visit-section {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 1.5rem;
}

.studio-visit-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 768px) {
  .studio-visit-heading {
    font-size: 2.25rem;
  }
}

.studio-visit-address {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .studio-visit-address {
    font-size: 1.25rem;
  }
}

.studio-map-section {
  height: 600px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.studio-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.studio-map-iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(1) contrast(1.25) brightness(0.5);
  transition: filter 1s;
}

.studio-map-section:hover .studio-map-iframe {
  filter: none;
}

/* Collections Page */
.collections-hero {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background: var(--bg-dark);
}

.collections-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .collections-title {
    font-size: 3.75rem;
  }
}

.collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.collection-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 1rem;
}

.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.collection-card:hover .collection-card-img img {
  transform: scale(1.05);
}

.collection-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--gold);
}

.collection-card-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 300;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.collection-card:hover .collection-card-title {
  color: var(--gold);
}

/* Collection Detail Pages */
.back-to-collections {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.back-to-collections:hover {
  color: var(--gold);
}

.collection-gallery-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
}

.collection-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.collection-gallery-item:hover img {
  transform: scale(1.05);
}

/* About Page */
.about-section {
  padding-top: 80px;
  background: #000;
}

.about-image-col {
  position: relative;
  min-height: 50vh;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-col {
  background: #000;
  padding: 3rem 0;
}

.about-content {
  max-width: 480px;
}

.about-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 768px) {
  .about-heading {
    font-size: 3rem;
  }

  .about-image-col {
    min-height: 100vh;
  }
}

.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.about-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 420px;
  margin: 0 auto 1.25rem;
}

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2.5rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  opacity: 0.8;
}

.footer-heading {
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

.footer-address {
  font-style: normal;
  font-size: 11px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-address a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-address a:hover {
  color: #fff;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-legal a:hover,
.footer-legal a.active {
  color: #fff;
}

/* Mobile menu styling */
@media (max-width: 767.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    margin: 0 -12px;
  }

  .navbar-nav {
    gap: 0.5rem;
  }
}