﻿:root {
  --bg: #101318;
  --surface: #181f2b;
  --text: #f5f4f1;
  --muted: #9aa1b3;
  --accent: #c17ea8;
  --accent-dark: #a86d95;
  --border: #2b3242;
  --max-width: 1200px;
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
  text-decoration: underline;
}

body, button, input, textarea {
  font: 400 1rem/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#siteWrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(16, 19, 24, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#siteTitle a {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

#mainNavigation {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}

#mainNavigation .collection {
  list-style: none;
}

#mainNavigation .collection a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

#mainNavigation .collection.active a {
  color: var(--accent);
}

.page-hero {
  max-width: var(--max-width);
  margin: 1.5rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #090c12;
  min-height: 420px;
}

.page-hero figure {
  margin: 0;
}

.page-hero img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03) brightness(0.95);
}

.page-hero .hero-copy {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2.5rem;
  max-width: 42rem;
  color: #fff;
  text-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.page-hero .hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.02;
}

.page-hero .hero-copy p {
  margin: 0 0 1.1rem;
  max-width: 40rem;
  line-height: 1.7;
}

.page-hero .hero-copy a.button {
  display: inline-block;
  padding: 1rem 1.5rem;
  color: var(--background);
  background: var(--accent);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.page-title {
  color: var(--text);
  font-size: clamp(2.25rem, 3vw, 3.4rem);
  margin-bottom: 1rem;
}

.section {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  background: rgba(11, 14, 20, 0.78);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.section h1,
.section h2 {
  color: var(--text);
  margin: 0 0 1rem;
}

.section p {
  color: var(--muted);
  line-height: 1.85;
}

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

.content-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.content-card h2 {
  margin-top: 0;
}

@media (max-width: 860px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-hero {
    min-height: 360px;
  }

  .page-hero .hero-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1.5rem;
  }
}

.mobile-nav-toggle {
  display: none;
}

.banner-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
}

#thumbnail {
  min-height: 420px;
}

#thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.color-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(16, 19, 28, 0.72), rgba(12, 14, 20, 0.58));
  pointer-events: none;
}

.desc-wrapper {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 380px;
  padding: 1.4rem 1.5rem;
  background: rgba(18, 23, 33, 0.95);
  border-radius: 24px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.45);
}

.desc-wrapper p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.desc-wrapper a {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.85rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

main {
  padding: 2rem 1.5rem 3rem;
}

.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.row,
.sqs-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.col,
.sqs-col,
.sqs-col-12,
.sqs-col-8,
.sqs-col-6,
.sqs-col-2,
.span-12,
.span-8,
.span-6,
.span-2 {
  padding: 0 0.75rem;
}

.span-12,
.sqs-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.span-8,
.sqs-col-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

.span-6,
.sqs-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.span-2,
.sqs-col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

.sqs-block {
  margin-bottom: 2rem;
}

.sqs-block-content {
  width: 100%;
}

.sqs-html-content h1,
.sqs-html-content h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 700;
}

.sqs-html-content h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.05;
  text-align: center;
}

.sqs-html-content h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  text-align: center;
}

.sqs-html-content p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.image-block-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(34, 28, 24, 0.12);
}

.sqs-block-image-figure {
  width: 100%;
}

#preFooter,
footer {
  padding: 2rem 1.5rem;
  background: #12161f;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}

#siteInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.site-phone,
.site-email {
  color: var(--text);
}

.back-to-top a {
  color: var(--accent);
  font-weight: 700;
}

.sqs-announcement-bar-dropzone,
.sqs-cart-dropzone {
  display: none;
}

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

  #mainNavigation {
    justify-content: flex-start;
  }

  .desc-wrapper {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .span-8,
  .sqs-col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .span-6,
  .sqs-col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .span-2,
  .sqs-col-2 {
    display: none;
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding: 1rem;
  }

  .desc-wrapper {
    padding: 1.25rem;
  }

  .sqs-html-content h1 {
    font-size: 2.2rem;
  }

  .sqs-html-content p {
    font-size: 0.98rem;
  }
}
