:root {
  --ink: #242133;
  --muted: #665e78;
  --paper: #fffafd;
  --surface: #ffffff;
  --line: #eadfec;
  --pink: #e84f9a;
  --violet: #8758d6;
  --blue: #3478ff;
  --teal: #009b8d;
  --gold: #e8872f;
  --shadow: 0 22px 60px rgba(36, 33, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(115deg, rgba(232, 79, 154, 0.08), transparent 28%),
    linear-gradient(245deg, rgba(0, 155, 141, 0.09), transparent 30%),
    var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 253, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark img {
  width: 48px;
  height: 38px;
  object-fit: contain;
}

.brand-mark span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--pink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100vh - 74px);
  padding: clamp(46px, 8vw, 98px) clamp(18px, 5vw, 72px) clamp(32px, 6vw, 70px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6.75rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-intro {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: linear-gradient(110deg, var(--pink), var(--violet), var(--blue));
  box-shadow: 0 14px 28px rgba(135, 88, 214, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-visual {
  justify-self: center;
  width: min(100%, 420px);
  padding: clamp(10px, 2vw, 18px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-showcase {
  width: min(100%, 460px);
  display: grid;
  gap: 18px;
  align-items: center;
}

.dragon-logo-image {
  width: 100%;
  object-fit: contain;
}

.brand-wordmark-image {
  width: 100%;
  object-fit: contain;
}

.brand-card-image {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.intro-band,
.section,
.split-section,
.order-section,
.quick-contact,
.events-section,
.gallery-preview,
.contact-section {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(22px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
}

.intro-band p:last-child {
  align-self: end;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.collection-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(36, 33, 51, 0.08);
}

.collection-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-number {
  display: block;
  margin-bottom: 40px;
  font-weight: 900;
}

.bows {
  border-top: 5px solid var(--pink);
}

.jewelry {
  border-top: 5px solid var(--violet);
}

.printed {
  border-top: 5px solid var(--teal);
}

.apparel {
  border-top: 5px solid var(--gold);
}

.magnets {
  border-top: 5px solid var(--blue);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  background: #fff;
}

.split-copy p {
  max-width: 660px;
  color: var(--muted);
}

.text-link {
  color: var(--violet);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.custom-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.custom-list p,
.photo-placeholder {
  margin: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px dashed rgba(135, 88, 214, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.order-section {
  background:
    linear-gradient(120deg, rgba(135, 88, 214, 0.08), transparent 36%),
    linear-gradient(245deg, rgba(0, 155, 141, 0.08), transparent 40%),
    var(--paper);
}

.custom-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
}

.custom-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
}

.custom-form textarea {
  resize: vertical;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  outline: 3px solid rgba(135, 88, 214, 0.2);
  border-color: var(--violet);
}

.full-field,
.form-actions {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.custom-form .button {
  cursor: pointer;
  font: inherit;
}

.events-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.event-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.event-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.event-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.event-schedule {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.event-schedule article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(36, 33, 51, 0.07);
}

.event-schedule h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.event-date {
  margin-bottom: 2px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-schedule span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.quick-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: var(--ink);
  color: #fff;
}

.quick-contact p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.quick-contact h2 {
  max-width: 780px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(36, 33, 51, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.product-card > div {
  padding: 16px;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.product-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.item-price {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(110deg, var(--pink), var(--violet));
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
}

.product-card p {
  color: var(--muted);
}

.product-card p:last-child {
  margin-bottom: 0;
}

.product-type {
  margin-bottom: 6px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card {
  grid-column: span 2;
}

.feature-card img {
  aspect-ratio: 4 / 3;
}

.coming-soon {
  justify-content: center;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(232, 79, 154, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(0, 155, 141, 0.13), transparent 44%),
    #fff;
  border-style: dashed;
}

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

.video-row video {
  width: 100%;
  max-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 16px 38px rgba(36, 33, 51, 0.08);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  background: var(--ink);
  color: #fff;
}

.contact-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.qr-panel {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.qr-panel img {
  width: 100%;
}

.qr-panel p {
  margin: 10px 0 0;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro-band,
  .split-section,
  .quick-contact,
  .events-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    width: min(100%, 330px);
  }

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

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

  .feature-card {
    grid-column: span 3;
  }
}

@media (max-width: 620px) {
  .brand-mark span {
    white-space: normal;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .collection-grid,
  .custom-list,
  .custom-form,
  .gallery-grid,
  .video-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .event-schedule article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .event-schedule span {
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
