:root {
  --bg-1: #000000;
  --bg-2: #000000;
  --panel: #0f1718cc;
  --line: #3f5d5f;
  --text: #eaf0eb;
  --muted: #b6c8bf;
  --accent: #38ffe4;
  --accent-2: #ffc83d;
}

@font-face {
  font-family: "Dream Avenue";
  font-display: swap;
  src: url("https://erenraymond.com/wp-content/uploads/et-fonts/FontsFree-Net-Dream-Avenue.ttf") format("truetype");
}

@font-face {
  font-family: "TT Drugs Regular";
  font-display: swap;
  src: url("https://erenraymond.com/wp-content/uploads/et-fonts/TT-Drugs-Trial-Regular.otf") format("opentype");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "TT Drugs Regular", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 0.45px, transparent 0.45px);
  background-size: 4px 4px;
}

.site-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 2rem;
}

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.82rem;
}

h1,
h2 {
  font-family: "TT Drugs Regular", "Trebuchet MS", sans-serif;
  font-weight: 700;
  margin: 0;
}

h1 {
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  letter-spacing: 0.05em;
  text-align: right;
}

.layout {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) 2.1fr;
  gap: 1.2rem;
}

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

.right-column.right-column-full {
  width: 100%;
}

.left-column {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.panel {
  background: var(--panel);
  border: 0;
  border-radius: 0;
  padding: 1rem;
  backdrop-filter: blur(6px);
}

h2 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  margin-bottom: 0.9rem;
  color: var(--accent-2);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li + li {
  margin-top: 0.6rem;
}

a {
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.panel li a {
  font-size: clamp(1.05rem, 1.1vw, 1.3rem);
}

a:hover {
  color: #ffffff;
}

.panel a:hover::after {
  width: 100%;
}

.right-column {
  display: grid;
  gap: 1rem;
}

.shop-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1vw, 1.15rem);
  line-height: 1.4;
}

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

.product-card {
  display: grid;
  gap: 0;
  padding: 0;
}

.product-image-link {
  display: block;
  overflow: hidden;
}

.product-image-link img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-image-link:hover img {
  transform: scale(1.03);
}

.product-copy {
  padding: 0.9rem;
}

.product-copy h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1rem, 1vw, 1.18rem);
  font-weight: 700;
  line-height: 1.25;
}

.product-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.size-select {
  width: 100%;
  min-height: 2.3rem;
  margin-bottom: 0.6rem;
  background: #0a1112;
  color: var(--text);
  border: 1px solid #203235;
  padding: 0.4rem 0.6rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.product-price {
  margin: 0 0 0.8rem;
  color: var(--accent-2);
  font-size: 1.1rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.panel a.btn::after {
  content: none;
}

.btn.btn-secondary {
  background: #0b0f10;
  color: var(--text);
}

.btn.btn-primary {
  background: var(--accent);
  color: #041212;
}

.btn.btn-primary:hover {
  color: #041212;
  background: #6effec;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn.btn-secondary:hover {
  color: #ffffff;
  background: #151c1d;
}

.checkout-status {
  min-height: 1.2rem;
  margin: 0.6rem 0 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.contact-panel {
  width: 100%;
  max-width: none;
}

.contact-line {
  margin: 0 0 0.35rem;
  font-size: clamp(1.05rem, 1.2vw, 1.3rem);
}

.contact-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.55rem;
  width: 100%;
  max-width: none;
}

.contact-form label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #2c3f42;
  background: #060909;
  color: var(--text);
  padding: 0.65rem;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.contact-form .btn {
  margin-top: 0.25rem;
  width: fit-content;
  min-width: 210px;
}

.coming-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.4;
}

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

.project-cta {
  background: #0a1112;
  padding: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.project-cta h3 {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.15rem);
}

.project-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.project-cta .btn {
  width: fit-content;
  min-width: 140px;
}

.hero-link {
  display: block;
}

.hero-media {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: clamp(320px, 56vh, 760px);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(1.03) contrast(1.06);
}

.hero-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.48rem 0.7rem;
  border-radius: 8px;
  background: #0000007d;
  border: 1px solid #ffffff38;
  letter-spacing: 0.02em;
}

.hero-link:hover .hero-media img {
  transform: scale(1.065);
  filter: saturate(1.15) contrast(1.1);
}

.music-card {
  background: var(--panel);
  border: 0;
  border-radius: 0;
  padding: 0.8rem;
}

.music-label {
  margin: 0 0 0.6rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

iframe {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 900px) {
  .site-wrap {
    padding-top: 1.1rem;
  }

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

  .site-header {
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
  }

  h1 {
    text-align: right;
  }

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

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

  .project-cta-grid {
    grid-template-columns: 1fr;
  }
}
