:root {
  --ink: #161713;
  --muted: #67695f;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e5e0d7;
  --green: #174d3b;
  --coral: #d95d4f;
  --gold: #b98938;
  --blue: #34689a;
  --shadow: 0 20px 60px rgba(22, 23, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(229, 224, 215, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-weight: 700;
  color: var(--muted);
}

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

.cart-button,
.cart-head button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.cart-button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
}

.cart-button span {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  place-items: center;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 76px) 72px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 14, 10, 0.84), rgba(10, 14, 10, 0.44) 45%, rgba(10, 14, 10, 0.06)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(44px, 7vw, 96px);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--coral);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.button.full {
  width: 100%;
}

.collection-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.collection-band div {
  min-height: 96px;
  padding: 22px clamp(16px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.collection-band strong,
.collection-band span {
  display: block;
}

.collection-band strong {
  font-size: 18px;
}

.collection-band span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  padding: 78px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section h2,
.contact-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 800;
}

.filter.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

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

.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(22, 23, 19, 0.06);
}

.product-art {
  display: grid;
  min-height: 240px;
  place-items: center;
  background: var(--art);
  color: rgba(255, 255, 255, 0.88);
  font-size: 76px;
  font-weight: 800;
}

.product-art img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  background: #f7f4ef;
}

.product-body {
  padding: 18px;
}

.product-top,
.product-price {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-top h3 {
  margin: 0;
  font-size: 18px;
}

.product-price {
  align-items: center;
  margin-top: 14px;
}

.product-body p {
  min-height: 46px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.item-code {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  font-size: 20px;
  font-weight: 900;
}

.add-button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 800;
}

.social-section {
  background: #eff4f1;
}

.size-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.size-guide {
  width: min(100%, 920px);
  display: block;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(22, 23, 19, 0.06);
}

.video-section {
  background: #171713;
  color: white;
}

.video-section .section-note {
  color: rgba(255, 255, 255, 0.72);
}

.video-frame {
  width: min(100%, 760px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  max-height: 78vh;
  display: block;
  background: #000;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.video-gallery video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #000;
  object-fit: cover;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  padding: 22px;
  color: white;
  box-shadow: var(--shadow);
}

.social-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.social-card strong {
  display: block;
  margin-top: 28px;
  font-size: 22px;
}

.social-card small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.whatsapp {
  background: #128c55;
}

.instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #fcb045);
}

.facebook {
  background: #2d67b2;
}

.tiktok {
  background: #111111;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.payment-section {
  background: #fffdfa;
  border-top: 1px solid var(--line);
}

.payment-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

.payment-card,
.payment-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(22, 23, 19, 0.06);
  padding: 24px;
}

.payment-card {
  display: grid;
  gap: 10px;
}

.payment-card span {
  width: max-content;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 7px 12px;
  font-weight: 900;
}

.payment-card strong {
  font-size: clamp(28px, 4vw, 42px);
}

.payment-card small,
.payment-note p {
  color: var(--muted);
  line-height: 1.7;
}

.payment-note h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.payment-note p {
  margin: 0;
}

.email-section {
  background: #eff4f1;
  border-top: 1px solid var(--line);
}

.email-card {
  display: grid;
  gap: 10px;
  width: min(100%, 760px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(22, 23, 19, 0.06);
  padding: 24px;
}

.email-card span {
  width: max-content;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  padding: 7px 12px;
  font-weight: 900;
}

.email-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(22px, 4vw, 36px);
}

.email-card small {
  color: var(--muted);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: end;
  background: rgba(22, 23, 19, 0.46);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(420px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-head,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-head h2 {
  margin: 0;
}

.cart-head button {
  min-height: 38px;
  border-radius: 999px;
  padding: 0 12px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
}

.cart-line {
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-thumb {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 8px;
  object-fit: cover;
  background: #f7f4ef;
}

.cart-line button {
  border: 0;
  background: transparent;
  color: var(--coral);
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .product-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand span:last-child {
    max-width: 178px;
    line-height: 1.1;
  }

  .hero {
    min-height: 84vh;
    padding-top: 104px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(10, 14, 10, 0.82), rgba(10, 14, 10, 0.26));
  }

  .hero h1 {
    font-size: 46px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .product-grid,
  .social-grid,
  .collection-band {
    grid-template-columns: 1fr;
  }

  .collection-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
