:root {
  --deep-teal: #0e2a2a;
  --teal-ink: #123434;
  --gold: #c7a46b;
  --gold-soft: #e5d3b2;
  --off-white: #f4f0ea;
  --smoke: #d8d2c7;
  --shadow: 0 24px 60px rgba(7, 25, 25, 0.35);
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, rgba(30, 74, 72, 0.4), transparent 55%),
    linear-gradient(160deg, #0b1f1f, #0e2a2a 45%, #0b1c1c);
  color: var(--off-white);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

img {
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(10, 28, 28, 0.8);
  border-bottom: 1px solid rgba(199, 164, 107, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
}

.wordmark {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.ghost {
  background: transparent;
  border: 1px solid rgba(244, 240, 234, 0.3);
  color: var(--off-white);
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  min-height: 78vh;
  align-items: stretch;
  margin-top: 12px;
  z-index: 1;
}

.hero-media {
  background: linear-gradient(140deg, rgba(14, 42, 42, 0.2), rgba(12, 30, 30, 0.8)),
    url("assets/481675799_1329006038184965_6216177267222465090_n.jpg") center/cover;
  min-height: 320px;
}

.hero-content {
  padding: 10vw 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: linear-gradient(130deg, rgba(12, 32, 32, 0.95), rgba(12, 32, 32, 0.6));
  box-shadow: var(--shadow);
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

h3 {
  font-size: 1.5rem;
}

.lede {
  font-size: 1rem;
  max-width: 420px;
  color: var(--smoke);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--gold);
  color: #0a1c1c;
  border: none;
  padding: 14px 26px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(199, 164, 107, 0.3);
}

.section {
  padding: 80px 6vw;
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.section-head p {
  color: var(--smoke);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product {
  background: rgba(10, 24, 24, 0.7);
  border: 1px solid rgba(199, 164, 107, 0.2);
  padding: 16px;
  display: grid;
  gap: 16px;
  transition: border 0.3s ease;
}

.product:hover {
  border-color: rgba(199, 164, 107, 0.6);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease;
}

.product-image.primary {
  background-image: linear-gradient(140deg, rgba(199, 164, 107, 0.2), rgba(14, 42, 42, 0.6));
}

.product-image.secondary {
  opacity: 0;
  background-image: linear-gradient(140deg, rgba(244, 240, 234, 0.1), rgba(14, 42, 42, 0.7));
}

.product:hover .product-image.primary {
  opacity: 0;
}

.product:hover .product-image.secondary {
  opacity: 1;
}

.product:nth-child(1) .product-image.primary {
  background-image: linear-gradient(140deg, rgba(199, 164, 107, 0.2), rgba(14, 42, 42, 0.6)),
    url("assets/476152253_1308980063520896_2976335309995246031_n.jpg");
}

.product:nth-child(1) .product-image.secondary {
  background-image: linear-gradient(140deg, rgba(244, 240, 234, 0.1), rgba(14, 42, 42, 0.7)),
    url("assets/476446807_1308979773520925_7114248646991365031_n.jpg");
}

.product:nth-child(2) .product-image.primary {
  background-image: linear-gradient(140deg, rgba(199, 164, 107, 0.2), rgba(14, 42, 42, 0.6)),
    url("assets/476220572_1308386853580217_2128783467699280562_n.jpg");
}

.product:nth-child(2) .product-image.secondary {
  background-image: linear-gradient(140deg, rgba(244, 240, 234, 0.1), rgba(14, 42, 42, 0.7)),
    url("assets/476467333_1308399320245637_1348583602514032511_n.jpg");
}

.product:nth-child(3) .product-image.primary {
  background-image: linear-gradient(140deg, rgba(199, 164, 107, 0.2), rgba(14, 42, 42, 0.6)),
    url("assets/481454941_1329006094851626_6412723466849460440_n.jpg");
}

.product:nth-child(3) .product-image.secondary {
  background-image: linear-gradient(140deg, rgba(244, 240, 234, 0.1), rgba(14, 42, 42, 0.7)),
    url("assets/481665764_1329005841518318_2841697976601806141_n.jpg");
}

.product:nth-child(4) .product-image.primary {
  background-image: linear-gradient(140deg, rgba(199, 164, 107, 0.2), rgba(14, 42, 42, 0.6)),
    url("assets/481675799_1329006038184965_6216177267222465090_n.jpg");
}

.product:nth-child(4) .product-image.secondary {
  background-image: linear-gradient(140deg, rgba(244, 240, 234, 0.1), rgba(14, 42, 42, 0.7)),
    url("assets/563630064_18084639148939833_8340304323595872252_n.jpg");
}

.product:nth-child(5) .product-image.primary {
  background-image: linear-gradient(140deg, rgba(199, 164, 107, 0.2), rgba(14, 42, 42, 0.6)),
    url("assets/476446807_1308979773520925_7114248646991365031_n.jpg");
}

.product:nth-child(5) .product-image.secondary {
  background-image: linear-gradient(140deg, rgba(244, 240, 234, 0.1), rgba(14, 42, 42, 0.7)),
    url("assets/481454941_1329006094851626_6412723466849460440_n.jpg");
}

.product:nth-child(6) .product-image.primary {
  background-image: linear-gradient(140deg, rgba(199, 164, 107, 0.2), rgba(14, 42, 42, 0.6)),
    url("assets/563630064_18084639148939833_8340304323595872252_n.jpg");
}

.product:nth-child(6) .product-image.secondary {
  background-image: linear-gradient(140deg, rgba(244, 240, 234, 0.1), rgba(14, 42, 42, 0.7)),
    url("assets/476152253_1308980063520896_2976335309995246031_n.jpg");
}

.product-info {
  display: grid;
  gap: 6px;
}

.product-info p {
  color: var(--smoke);
  font-size: 0.9rem;
}

.product-info span {
  color: var(--gold-soft);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 80px 6vw;
}

.split.reverse {
  direction: rtl;
}

.split.reverse .split-content {
  direction: ltr;
}

.split-media {
  min-height: 360px;
  background: linear-gradient(135deg, rgba(14, 42, 42, 0.3), rgba(0, 0, 0, 0.6)),
    url("assets/476220572_1308386853580217_2128783467699280562_n.jpg") center/cover;
  border: 1px solid rgba(199, 164, 107, 0.2);
}

.split.reverse .split-media {
  background: linear-gradient(135deg, rgba(14, 42, 42, 0.2), rgba(0, 0, 0, 0.7)),
    url("assets/476467333_1308399320245637_1348583602514032511_n.jpg") center/cover;
}

.split-content {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--gold);
}

.pdp {
  background: rgba(9, 23, 23, 0.6);
  border-top: 1px solid rgba(199, 164, 107, 0.2);
  border-bottom: 1px solid rgba(199, 164, 107, 0.2);
}

.pdp-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.pdp-gallery {
  min-height: 420px;
  background: linear-gradient(145deg, rgba(244, 240, 234, 0.05), rgba(14, 42, 42, 0.6)),
    url("assets/481454941_1329006094851626_6412723466849460440_n.jpg") center/cover;
  border: 1px solid rgba(199, 164, 107, 0.2);
}

.pdp-details {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.price {
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.specs {
  display: grid;
  gap: 12px;
}

.specs div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(244, 240, 234, 0.1);
  padding-bottom: 8px;
}

.specs dt {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--smoke);
}

.specs dd {
  font-size: 0.9rem;
}

.pdp-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact {
  padding-top: 40px;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: 36px;
  background: rgba(10, 24, 24, 0.7);
  border: 1px solid rgba(199, 164, 107, 0.2);
}

.contact-meta {
  color: var(--smoke);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--smoke);
}

.contact-form input,
.contact-form select {
  background: rgba(9, 21, 21, 0.8);
  border: 1px solid rgba(244, 240, 234, 0.1);
  padding: 10px 14px;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 40px 6vw 60px;
  border-top: 1px solid rgba(199, 164, 107, 0.2);
  background: rgba(7, 18, 18, 0.8);
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--smoke);
}

main > section,
.site-footer,
.hero {
  animation: fadeUp 0.9s ease both;
}

main > section:nth-of-type(2) { animation-delay: 0.1s; }
main > section:nth-of-type(3) { animation-delay: 0.2s; }
main > section:nth-of-type(4) { animation-delay: 0.3s; }
main > section:nth-of-type(5) { animation-delay: 0.4s; }
main > section:nth-of-type(6) { animation-delay: 0.5s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
  }

  .hero-content {
    padding: 60px 8vw;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .ghost {
    width: 100%;
    text-align: center;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .pdp-layout {
    grid-template-columns: 1fr;
  }
}
