:root {
  --ink: #241614;
  --muted: #76625d;
  --paper: #fffaf4;
  --cream: #f6efe5;
  --gold: #c99a45;
  --red: #9d1828;
  --pink: #c73d6f;
  --teal: #006b68;
  --green: #174d43;
  --line: rgba(36, 22, 20, 0.13);
  --shadow: 0 24px 70px rgba(42, 20, 16, 0.18);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(201, 154, 69, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 154, 69, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(34, 17, 14, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(36, 22, 20, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(132px, 15vw, 192px);
  height: 48px;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 13px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 76px) 34px;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 24%, rgba(201, 154, 69, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(32, 13, 12, 0.9), rgba(32, 13, 12, 0.58) 45%, rgba(32, 13, 12, 0.18)),
    linear-gradient(0deg, rgba(18, 7, 6, 0.92), transparent 58%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 120px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 11vw, 148px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

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

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

.button.primary {
  color: #25140f;
  background: linear-gradient(135deg, #ffd779, #c48a31);
  box-shadow: 0 16px 42px rgba(201, 154, 69, 0.35);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.button.whatsapp {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: #0f8f55;
  box-shadow: 0 16px 42px rgba(15, 143, 85, 0.26);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(31, 12, 10, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(31, 12, 10, 0.26);
}

.icon-button svg,
.contact-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon-button.whatsapp,
.contact-icon.whatsapp-icon {
  background: #0f8f55;
}

.icon-button.instagram,
.contact-icon.instagram-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.icon-button.youtube,
.contact-icon.youtube-icon {
  background: #ff0033;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 22px;
  background: rgba(28, 14, 12, 0.46);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 8px;
  color: #ffe2a1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 4vw, 40px);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro,
.media-showcase,
.trade,
.spotlight,
.inquiry {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.intro > p,
.media-copy p,
.trade-copy p,
.spotlight-text p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: #2b1714;
  color: #ffe4ad;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: drift 28s linear infinite;
}

.marquee span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 4vw, 48px);
  white-space: nowrap;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.media-showcase {
  align-items: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 22, 20, 0.14);
  border-radius: 8px;
  background: #1f110f;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 12;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  background: #1f110f;
}

.video-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(31, 17, 15, 0.76);
  backdrop-filter: blur(14px);
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption strong {
  color: #ffe2a1;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

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

.collection-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.collection-card:not(.product-card)::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.22) 42% 44%, transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 16px);
}

.collection-card:not(.product-card) > * {
  position: relative;
}

.product-card {
  min-height: 600px;
  padding: 0;
  color: #fff;
  background: #2b1714;
}

.featured-product {
  grid-column: span 2;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 360ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 8, 8, 0.02), rgba(24, 8, 8, 0.2) 42%, rgba(24, 8, 8, 0.88));
}

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

.product-info {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 22px;
}

.collection-card.crimson {
  background: linear-gradient(145deg, #7d1020, #d5425c);
}

.collection-card.peacock {
  background: linear-gradient(145deg, #005d65, #0b9180);
}

.collection-card.ivory {
  color: #2d1912;
  background: linear-gradient(145deg, #f6e7c5, #c99a45);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.card-top span {
  opacity: 0.7;
  font-weight: 800;
}

.card-top strong {
  max-width: 170px;
  text-align: right;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.collection-card p {
  margin: auto 0 24px;
  font-size: 18px;
  line-height: 1.55;
}

.collection-card button {
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.trade {
  align-items: center;
}

.trade-list {
  display: grid;
  gap: 14px;
}

.trade-list div,
.step,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(45, 24, 20, 0.08);
}

.trade-list div {
  padding: 22px;
}

.check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
}

.trade-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.trade-list p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #fff8ee, #f4e7d8);
}

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

.step {
  min-height: 260px;
  padding: 22px;
}

.step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.spotlight {
  align-items: center;
}

.real-board {
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.real-board img {
  width: 100%;
  height: 100%;
  min-height: 204px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.real-board img:nth-child(1) {
  grid-row: span 2;
}

.real-board img:nth-child(2) {
  margin-top: 42px;
}

.real-board img:nth-child(3) {
  margin-bottom: 42px;
}

.contact-band {
  padding: 86px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(36, 22, 20, 0.96), rgba(93, 20, 27, 0.92)),
    #241614;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-inner h2 {
  max-width: 620px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.address-card span {
  color: #ffe2a1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: 18px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
}

.address-card {
  grid-column: 1 / -1;
  font-style: normal;
}

.inquiry {
  padding-top: 36px;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quick-contact .icon-button {
  width: 46px;
  height: 46px;
  border-color: rgba(36, 22, 20, 0.12);
}

.quick-contact .icon-button svg {
  width: 22px;
  height: 22px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: #3d2924;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 22, 20, 0.16);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  outline: 0;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 69, 0.18);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 76px);
  color: #fff;
  background: #241614;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  display: block;
  width: min(220px, 56vw);
  height: auto;
  border-radius: 999px;
  background: #fff;
}

.footer a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links .icon-button {
  width: 46px;
  height: 46px;
}

.footer-links .icon-button svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 860px) {
  .site-header {
    inset: 12px 12px auto;
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 20px;
    background: rgba(36, 22, 20, 0.96);
  }

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

  .hero {
    min-height: 900px;
    padding-top: 130px;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .hero-panel,
  .intro,
  .media-showcase,
  .trade,
  .spotlight,
  .inquiry,
  .contact-inner,
  .collection-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-left: 0;
  }

  .section {
    width: min(100% - 28px, 680px);
    padding: 72px 0;
  }

  .collection-card {
    min-height: 300px;
  }

  .product-card {
    min-height: 580px;
  }

  .featured-product {
    grid-column: auto;
  }

  .real-board {
    min-height: 360px;
  }

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

@media (max-width: 560px) {
  .hero {
    min-height: 820px;
    padding-inline: 16px;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

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

  .footer {
    align-items: stretch;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-panel div {
    padding: 18px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }
}
