/** Shopify CDN: Minification failed

Line 632:0 Expected "}" to go with "{"

**/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --az-bg: #0c0c0f;
  --az-card: #13131a;
  --az-border: rgba(255, 255, 255, 0.08);
  --az-text: #f5f5f2;
  --az-muted: rgba(245, 245, 242, 0.65);
  --az-accent: #c7a46a;
  --az-accent-strong: #d9b676;
  --az-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --az-radius: 18px;
  --az-gap: clamp(16px, 2vw, 28px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.azura-body {
  margin: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(90% 90% at 80% 10%, rgba(255, 255, 255, 0.04), transparent 55%),
    var(--az-bg);
  color: var(--az-text);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.azura-main {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.azura-ready .azura-main {
  opacity: 1;
}

.azura-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--az-bg);
  z-index: 40;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.azura-loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.azura-loader__word {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.azura-loader__pen {
  width: 180px;
  height: 2px;
  margin: 18px auto 12px;
  background: linear-gradient(90deg, transparent, var(--az-accent), transparent);
  animation: azura-pulse 1.8s ease-in-out infinite;
}

.azura-loader__sub {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--az-muted);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.azura-loader__sub.is-on {
  opacity: 1;
}

@keyframes azura-pulse {
  0%,
  100% {
    transform: scaleX(0.6);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.azura-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(12, 12, 15, 0.6);
  border-bottom: 1px solid var(--az-border);
}

.azura-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--az-gap);
  padding: 18px clamp(18px, 4vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}

.azura-header__logo {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  justify-self: start;
}

.azura-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.azura-header__link {
  font-size: 14px;
  color: var(--az-muted);
  transition: color 0.2s ease;
}

.azura-header__link:hover,
.azura-header__link:focus-visible {
  color: var(--az-text);
}

.azura-header__link:focus-visible,
.azura-header__cta:focus-visible,
.azura__card:focus-visible,
.azura-modal__action:focus-visible,
.azura-fab:focus-visible {
  outline: 2px solid var(--az-accent);
  outline-offset: 3px;
}

.azura-header__cta {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--az-border);
  background: linear-gradient(120deg, rgba(199, 164, 106, 0.16), rgba(199, 164, 106, 0.04));
  color: var(--az-text);
  font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.azura-header__cta:hover,
.azura-header__cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(199, 164, 106, 0.6);
  box-shadow: 0 12px 24px rgba(199, 164, 106, 0.12);
}

.azura-banner {
  padding: 72px clamp(18px, 4vw, 32px) 36px;
  text-align: center;
}

.azura-banner__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.azura-banner__subtitle {
  margin: 0;
  color: var(--az-muted);
  font-size: 16px;
}

.azura {
  padding: 12px clamp(18px, 4vw, 32px) 48px;
}

.azura__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.azura__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--az-gap);
}

.azura__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--az-radius);
  border: 1px solid var(--az-border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.0));
  box-shadow: var(--az-shadow);
  isolation: isolate;
  cursor: pointer;
  min-height: 280px;
}

.azura__media {
  display: block;
  height: 100%;
}

.azura__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.azura__card:hover .azura__img,
.azura__card:focus-visible .azura__img {
  transform: scale(1.02);
  filter: brightness(1.06);
}

.azura__card--cta {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(199, 164, 106, 0.16), rgba(12, 12, 15, 0.96));
  border: 1px solid rgba(199, 164, 106, 0.36);
  color: var(--az-text);
}

.azura__card-body {
  padding: 32px;
  text-align: center;
}

.azura__cta-label {
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.azura__cta-desc {
  margin: 8px 0 0;
  color: var(--az-muted);
}

.azura-story {
  max-width: 1100px;
  margin: 72px auto;
  padding: 0 clamp(18px, 4vw, 32px);
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.azura-story__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 36px);
  font-family: "Playfair Display", "Times New Roman", serif;
}

.azura-story__copy {
  margin: 0 0 16px;
  color: var(--az-muted);
}

.azura-story__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.azura-story__item {
  padding: 14px 0;
  border-top: 1px solid var(--az-border);
}

.azura-story__item:last-child {
  border-bottom: 1px solid var(--az-border);
}

.azura-story__item-title {
  margin: 0 0 6px;
  font-weight: 600;
}

.azura-story__item-copy {
  margin: 0;
  color: var(--az-muted);
}

.azura-story__image {
  position: relative;
  border-radius: var(--az-radius);
  overflow: hidden;
  border: 1px solid var(--az-border);
  background: #0f0f14;
  box-shadow: var(--az-shadow);
}

.azura-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.azura-story__caption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--az-muted);
}

.azura-footer {
  margin-top: 64px;
  padding: 40px clamp(18px, 4vw, 32px) 60px;
  background: #0a0a0e;
  border-top: 1px solid var(--az-border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.azura-footer__brand {
  margin: 0 0 8px;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.azura-footer__copy {
  margin: 0;
  color: var(--az-muted);
}

.azura-footer__title {
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--az-muted);
}

.azura-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.azura-footer__link a {
  color: var(--az-text);
  font-weight: 500;
  transition: color 0.2s ease;
}

.azura-footer__link a:hover,
.azura-footer__link a:focus-visible {
  color: var(--az-accent-strong);
}

.azura-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 50;
  padding: 20px;
}

.azura-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.azura-modal__backdrop {
  position: absolute;
  inset: 0;
}

.azura-modal__dialog {
  position: relative;
  background: #111118;
  border-radius: 16px;
  border: 1px solid var(--az-border);
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--az-shadow);
}

.azura-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--az-text);
  font-size: 24px;
  cursor: pointer;
}

.azura-modal__eyebrow {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--az-muted);
  font-size: 12px;
}

.azura-modal__title {
  margin: 6px 0 8px;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.azura-modal__copy {
  margin: 0 0 16px;
  color: var(--az-muted);
}

.azura-modal__actions {
  display: grid;
  gap: 10px;
}

.azura-modal__action {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--az-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--az-text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.azura-modal__action:hover,
.azura-modal__action:focus-visible {
  border-color: rgba(199, 164, 106, 0.45);
  transform: translateY(-1px);
}

.azura-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--az-border);
  background: rgba(12, 12, 15, 0.8);
  display: grid;
  place-items: center;
  color: var(--az-text);
  box-shadow: var(--az-shadow);
  transform: translateY(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  cursor: pointer;
}

.azura-fab.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.azura-fab__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.azura-tree {
  padding: 32px clamp(18px, 4vw, 32px);
  display: grid;
  place-items: center;
}

.azura-tree__card {
  width: min(760px, 100%);
  border: 1px solid var(--az-border);
  border-radius: var(--az-radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--az-shadow);
}

.azura-tree__eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--az-muted);
  font-size: 12px;
}

.azura-tree__heading {
  margin: 0 0 8px;
  font-size: 24px;
  font-family: "Playfair Display", "Times New Roman", serif;
}

.azura-tree__copy {
  margin: 0 0 18px;
  color: var(--az-muted);
}

.azura-tree__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.azura-tree__item {
  border: 1px solid var(--az-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.azura-tree__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  color: var(--az-text);
  font-weight: 500;
}

.azura-tree__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.azura-tree__badge {
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(199, 164, 106, 0.16);
  border: 1px solid rgba(199, 164, 106, 0.36);
  font-size: 12px;
  color: var(--az-accent-strong);
}

[data-az-animate] {
[data-az-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.az-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 800px) {
  .azura-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .azura-header__cta {
    width: 100%;
    text-align: center;
  }

  .azura-banner {
    padding-top: 52px;
  }

  .azura__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 520px) {
  .azura-story {
    margin: 48px auto;
  }

  .azura-header__nav {
    flex-wrap: wrap;
  }
}
