:root {
  --bg: #090807;
  --panel: rgba(23, 20, 18, 0.72);
  --panel-soft: rgba(31, 27, 24, 0.9);
  --text: #f8f2ea;
  --muted: #c8baa6;
  --gold: #dfbc7a;
  --gold-soft: #9a7441;
  --gold-deep: #6f4d25;
  --beige: #eadfcd;
  --border: rgba(223, 188, 122, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.24);
  --container: min(1200px, calc(100vw - 2rem));
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(223, 188, 122, 0.14), transparent 20%),
    linear-gradient(180deg, #090807 0%, #120f0d 34%, #0c0b09 66%, #080706 100%);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 20% 20%, rgba(223, 188, 122, 0.05), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(223, 188, 122, 0.05), transparent 16%);
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-aura {
  position: fixed;
  top: 12vh;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.16;
  pointer-events: none;
  z-index: -1;
}

.page-aura--left {
  left: -10rem;
  background: radial-gradient(circle, rgba(223, 188, 122, 0.65), transparent 60%);
}

.page-aura--right {
  right: -12rem;
  top: 45vh;
  background: radial-gradient(circle, rgba(234, 223, 205, 0.35), transparent 58%);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(216, 179, 106, 0.25), transparent 35%),
    #080808;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  border: 1px solid rgba(216, 179, 106, 0.35);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: inset 0 0 0 0.8rem rgba(255, 255, 255, 0.02);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(10, 9, 8, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-condensed {
  background: rgba(10, 9, 8, 0.82);
  border-color: rgba(223, 188, 122, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.6rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__name,
h1,
h2,
h3,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}

.brand__name {
  font-size: 2.15rem;
}

.brand__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.9rem;
  align-items: center;
}

.site-nav a,
.footer-link,
.social-links a {
  position: relative;
  transition: color var(--transition);
  font-size: 0.93rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after,
.footer-link::after,
.social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.footer-link:hover,
.social-links a:hover {
  color: var(--gold);
}

.site-nav a:hover::after,
.footer-link:hover::after,
.social-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text);
}

.nav-toggle span {
  width: 1.1rem;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__overlay,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: saturate(0.88) contrast(1.08) brightness(0.78);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.88), rgba(6, 6, 6, 0.26)),
    linear-gradient(180deg, rgba(6, 6, 6, 0.12), rgba(6, 6, 6, 0.78));
}

.hero__veil {
  background:
    radial-gradient(circle at 70% 24%, rgba(223, 188, 122, 0.26), transparent 22%),
    radial-gradient(circle at 58% 72%, rgba(234, 223, 205, 0.08), transparent 24%);
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 43rem;
  margin-left: 0;
  padding: 8rem 0 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.7rem;
}

.hero__kicker,
.section-intro,
.about-signature span {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: rgba(248, 242, 234, 0.62);
}

h1 span,
h1 em {
  display: block;
}

h1 {
  margin: 0;
  font-size: clamp(4.4rem, 13vw, 8.4rem);
  line-height: 0.88;
}

h1 em {
  font-style: normal;
  font-size: clamp(1.4rem, 3.3vw, 2.3rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(234, 223, 205, 0.82);
  margin-top: 0.4rem;
}

.hero__tagline {
  margin: 1.25rem 0 1.3rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--beige);
}

.hero__copy,
.about-copy p,
.contact-copy p,
.footer-copy,
.collection-card__content p,
.info-panel p,
.detail-description {
  color: rgba(246, 240, 231, 0.82);
}

.hero__copy {
  max-width: 36rem;
  font-size: 1.06rem;
}

.hero__actions,
.detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  max-width: 42rem;
}

.hero__metrics div {
  padding-top: 1rem;
  border-top: 1px solid rgba(223, 188, 122, 0.24);
}

.hero__metrics strong,
.detail-meta span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--beige);
}

.hero__metrics span {
  color: rgba(246, 240, 231, 0.7);
  font-size: 0.9rem;
}

.hero__frame {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(223, 188, 122, 0.16);
  border-radius: 2rem;
  z-index: 0;
  pointer-events: none;
  mask: linear-gradient(#000, transparent 14%, transparent 86%, #000);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 10rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: linear-gradient(135deg, #f0cb84, #b18343);
  color: #17120c;
  box-shadow: 0 18px 44px rgba(216, 179, 106, 0.24);
}

.button--gold:hover {
  box-shadow: 0 18px 40px rgba(216, 179, 106, 0.35);
}

.button--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.button--ghost:hover {
  border-color: rgba(216, 179, 106, 0.45);
  color: var(--gold);
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-heading {
  max-width: 38rem;
  margin-bottom: 1.1rem;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.detail-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.section-intro {
  max-width: 35rem;
  margin-bottom: 2.4rem;
  color: rgba(248, 242, 234, 0.72);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-transform: none;
  font-size: 0.82rem;
}

.collection-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card,
.gallery-card,
.product-card,
.info-panel,
.detail-grid,
.contact-form,
.map-placeholder {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.collection-card,
.gallery-card {
  overflow: hidden;
  border-radius: 1.75rem;
  transform: translateY(0);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 700ms ease, border-color var(--transition);
}

.collection-card img,
.gallery-card img {
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  transition: transform 700ms ease;
}

.collection-card:hover img,
.gallery-card:hover img,
.product-card:hover .product-card__image img,
.detail-image:hover img {
  transform: scale(1.05);
}

.collection-card:hover,
.gallery-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  border-color: rgba(223, 188, 122, 0.32);
}

.collection-card__content {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  padding: 1.35rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(13, 12, 11, 0.2), rgba(13, 12, 11, 0.82));
  backdrop-filter: blur(14px);
}

.collection-card {
  position: relative;
  min-height: 26rem;
}

.about-grid,
.contact-grid,
.detail-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.about-grid,
.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.about-panels {
  display: grid;
  gap: 1rem;
}

.about-signature {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(223, 188, 122, 0.18);
}

.about-signature p {
  margin: 0.5rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--beige);
}

.info-panel,
.contact-form {
  border-radius: 1.5rem;
  padding: 1.7rem;
  backdrop-filter: blur(18px);
}

.shop-toolbar {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(223, 188, 122, 0.16);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
}

.toolbar-field {
  display: grid;
  gap: 0.45rem;
}

.toolbar-field span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.toolbar-field select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.toolbar-field select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(223, 188, 122, 0.46);
  box-shadow: 0 0 0 4px rgba(223, 188, 122, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 700ms ease, border-color var(--transition);
}

.product-card__image {
  overflow: hidden;
}

.product-card__image img {
  aspect-ratio: 0.8;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-card__body {
  padding: 1.45rem;
}

.product-card__category,
.detail-price,
.cart-feedback {
  color: var(--gold);
}

.product-card h3,
.collection-card h3,
.info-panel h3 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.6rem;
}

.detail-grid {
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(18, 16, 14, 0.82);
}

.detail-image {
  overflow: hidden;
}

.detail-image img {
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  transition: transform 700ms ease;
}

.detail-copy {
  padding: 2.7rem;
}

.detail-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.detail-meta span {
  min-width: 9rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 188, 122, 0.16);
  background: rgba(255, 255, 255, 0.02);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 242, 234, 0.68);
}

.size-picker fieldset {
  border: 0;
  padding: 0;
  margin: 1.5rem 0 0;
}

.size-picker legend {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.size-picker label {
  display: inline-flex;
  margin-right: 0.7rem;
  margin-bottom: 0.7rem;
}

.size-picker input {
  position: absolute;
  opacity: 0;
}

.size-picker span {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.size-picker input:checked + span {
  background: rgba(216, 179, 106, 0.12);
  border-color: rgba(216, 179, 106, 0.5);
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.social-links {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 12rem;
  border-radius: 1.5rem;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.08em;
  background:
    linear-gradient(135deg, rgba(223, 188, 122, 0.08), transparent),
    rgba(255, 255, 255, 0.02);
}

.site-footer {
  padding: 2rem 0 2.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-size: 2rem;
}

.footer-copy {
  margin: 0;
  max-width: 30rem;
}

.reveal {
  opacity: 0;
  transform: translateY(46px) scale(0.985);
  transition: opacity 950ms cubic-bezier(0.22, 1, 0.36, 1), transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.collection-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.about-panels .info-panel:nth-child(2) {
  transition-delay: 120ms;
}

.collection-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3),
.about-panels .info-panel:nth-child(3) {
  transition-delay: 240ms;
}

.gallery-grid .reveal:nth-child(4) {
  transition-delay: 360ms;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 179, 106, 0.28);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 20px rgba(216, 179, 106, 0);
  }
}

@media (max-width: 980px) {
  .collection-grid,
  .gallery-grid,
  .product-grid,
  .about-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    min-width: 14rem;
    padding: 1rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    background: rgba(17, 16, 15, 0.96);
    display: none;
    flex-direction: column;
    align-items: start;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero__content {
    padding-top: 8rem;
  }

  .hero__metrics {
    grid-template-columns: 1fr;
    max-width: 18rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.75rem 0;
  }

  .hero__actions,
  .detail-actions,
  .shop-toolbar,
  .footer-shell {
    flex-direction: column;
    align-items: start;
  }

  .button,
  .toolbar-field,
  .toolbar-field select {
    width: 100%;
  }

  .collection-card img,
  .gallery-card img,
  .detail-image img {
    min-height: 18rem;
  }

  .detail-copy {
    padding: 1.5rem;
  }

  .hero__frame {
    inset: 1rem;
    border-radius: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
