:root {
  --bg: #050505;
  --bg-elevated: #111111;
  --bg-soft: #1a1a1a;
  --text: #f5f2eb;
  --muted: #9a958c;
  --line: rgba(245, 242, 235, 0.14);
  --accent: #d4af6a;
  --white: #ffffff;
  --danger: #e85d5d;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --announcement-h: 36px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(212, 175, 106, 0.08), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(255, 255, 255, 0.03), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

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

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

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

.announcement {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--announcement-h);
  display: grid;
  place-items: center;
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.announcement a:hover {
  border-color: var(--accent);
}

.header {
  position: sticky;
  top: var(--announcement-h);
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  justify-self: center;
}

.brand__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

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

.nav a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: 0.65rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
}

.search-bar {
  border-top: 1px solid var(--line);
  padding: 0.75rem 1.25rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.search-bar input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  outline: none;
}

.search-bar input:focus {
  border-color: var(--accent);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--announcement-h));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__media,
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__img {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s var(--ease), transform 6s var(--ease);
}

.hero__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem 4rem;
  max-width: 780px;
  animation: rise 1s var(--ease) both;
}

.hero__brand {
  width: min(280px, 70vw);
  margin: 0 auto 1.25rem;
  mix-blend-mode: screen;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.55));
}

.hero__slogan {
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero__dots button {
  width: 28px;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.hero__dots button.is-active {
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--text);
  color: #111;
}

.btn--solid:hover {
  background: var(--accent);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

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

.btn--full {
  width: 100%;
}

.categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cat-tile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.78));
}

.cat-tile:hover img {
  transform: scale(1.05);
}

.cat-tile__label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
}

.cat-tile__label span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.cat-tile__label h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
}

.products-section,
.instagram,
.shipping {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  margin: 0.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.section-sub {
  margin: 0 auto 1.5rem;
  color: var(--muted);
  max-width: 420px;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 0.55rem 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter:hover,
.filter.is-active {
  color: #111;
  background: var(--text);
  border-color: var(--text);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.7s var(--ease) forwards;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.35rem 0.55rem;
}

.product-card__body {
  padding: 1rem 0.15rem 0;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.product-card__price {
  color: var(--accent);
  font-size: 0.9rem;
  white-space: nowrap;
}

.product-card__type {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.product-card .btn {
  min-height: 42px;
  padding: 0.65rem 0.5rem;
  font-size: 0.62rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  background: var(--bg-elevated);
}

.split--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  min-height: 360px;
  overflow: hidden;
}

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

.split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  gap: 1rem;
}

.split__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.split__copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
}

.instagram {
  border-top: 1px solid var(--line);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s ease;
}

.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-tile:hover img {
  transform: scale(1.05);
}

.ig-tile:hover::after {
  opacity: 1;
}

.shipping {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 0;
}

.shipping__item {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}

.shipping__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.shipping__item p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__brand {
  text-align: center;
  margin-bottom: 2.5rem;
}

.footer__brand img {
  height: 72px;
  margin: 0 auto 0.75rem;
  mix-blend-mode: screen;
}

.footer__brand p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__cols h4 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__cols a,
.footer__cols p {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--text);
}

.footer__cols a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

.credit strong {
  color: var(--text);
  font-weight: 500;
}

.modal[hidden],
.drawer[hidden],
.search-bar[hidden] {
  display: none !important;
}

.modal,
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.modal__backdrop,
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  background: #0d0d0d;
  border: 1px solid var(--line);
  animation: rise 0.35s var(--ease);
}

.modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  z-index: 3;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
}

.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal__media {
  min-height: 320px;
  background: #000;
}

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

.modal__form-wrap {
  padding: 2rem 1.5rem;
}

.modal__form-wrap h3 {
  margin: 0.35rem 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.modal__price {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.modal__desc {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

#orderForm {
  display: grid;
  gap: 0.75rem;
}

#orderForm label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

#orderForm input,
#orderForm select,
#orderForm textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  outline: none;
}

#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
  border-color: var(--accent);
}

.form-msg {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.pay-block {
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}

.pay-block__title {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.pay-methods {
  display: grid;
  gap: 0.5rem;
}

.pay-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.75rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pay-option:has(input:checked),
.pay-option.is-active {
  border-color: var(--accent);
  background: rgba(212, 175, 106, 0.06);
}

.pay-option input {
  margin-top: 0.2rem;
}

.pay-option strong {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.pay-option span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0.15rem;
}

.pay-summary {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.pay-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.pay-summary__total {
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
}

.pay-summary__total strong {
  color: var(--accent);
}

.bank-box {
  padding: 0.75rem;
  border: 1px dashed var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.bank-box p {
  margin: 0 0 0.35rem;
}

.bank-box #bankDetails {
  color: var(--text);
  line-height: 1.5;
}

.card-fields {
  display: grid;
  gap: 0.65rem;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.form-msg.ok {
  color: #8fd39a;
}

.form-msg.err {
  color: var(--danger);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100%;
  background: #0d0d0d;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  animation: slide 0.35s var(--ease);
}

.drawer__head,
.drawer__foot {
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  display: block;
}

.drawer__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.drawer__head button {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
}

.drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem;
}

.cart-empty {
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.cart-line h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.tiny {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

@keyframes slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .nav--left {
    position: absolute;
    top: calc(var(--header-h) + var(--announcement-h));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a0a0a;
    border-bottom: 1px solid var(--line);
    display: none;
  }

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

  .nav--left a {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--line);
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .categories,
  .split,
  .split--reverse,
  .modal__grid,
  .shipping,
  .footer__cols,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .cat-tile {
    min-height: 280px;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
