:root {
  --bg: #e8e8e4;
  --surface: #f2f2ee;
  --ink: #080808;
  --muted: #62625c;
  --line: #d0d0ca;
  --accent: #19a7df;
  --warm: #f1e14f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(120deg, rgba(240, 120, 189, 0.9) 0%, rgba(169, 140, 255, 0.86) 48%, rgba(71, 213, 223, 0.9) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  background: var(--ink);
  object-fit: cover;
}

.brand-name {
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 4vw, 2.4rem);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--muted);
}

.intro-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  align-items: stretch;
  gap: 2rem;
  min-height: 0;
  height: 460px;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(232, 232, 228, 0.96), rgba(232, 232, 228, 0.62)),
    linear-gradient(135deg, #eeeeea 0%, #e2e2dc 50%, #d2d2ca 100%);
  overflow: hidden;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.intro-hero::before {
  display: none;
}

.intro-feature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 100%;
  border: 1px solid rgba(8, 8, 8, 0.16);
  background: #111111;
  overflow: hidden;
}

.intro-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.32));
  pointer-events: none;
}

.intro-feature .outline-link {
  z-index: 2;
  margin: 1rem;
  background: rgba(232, 232, 228, 0.84);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.intro-feature .outline-link:hover {
  background: var(--ink);
  color: #ffffff;
}

.intro-feature iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111111;
}

.intro-feature .youtube-link {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.9rem;
  background: rgba(8, 8, 8, 0.74);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.intro-feature .youtube-link:hover {
  background: #ffffff;
  color: var(--ink);
}

.intro-copy,
.outline-link {
  position: relative;
  z-index: 1;
}

.intro-copy h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
}

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

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

h1 {
  margin-bottom: 1.1rem;
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.42;
  font-weight: 500;
  text-align: justify;
  text-wrap: pretty;
}

.outline-link,
.card-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 54px;
  padding: 0 1.4rem;
  border: 2px solid currentColor;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.outline-link:hover,
.card-copy a:hover {
  background: var(--ink);
  color: #ffffff;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1rem, 3vw, 2rem);
}

.module-card {
  display: grid;
  grid-template-rows: minmax(320px, 58vh) auto;
  min-height: 0;
  color: var(--ink);
  background-color: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.module-card.ornament {
  background-image: none;
}

.module-card::after {
  display: none;
}

.module-card.ornament .module-panel {
  display: none;
}

.product-media {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(8, 8, 8, 0.04)),
    #ededdf;
  overflow: hidden;
}

.module-card.ornament .product-media {
  background-image: url("images/ornament-cover-28072026.jpg");
  background-position: center 38%;
  background-size: cover;
}

.module-card.colibri .product-media {
  background-image: url("images/colibri-angle.jpg");
  background-position: center 50%;
  background-size: cover;
}

.module-card.colibri .module-panel {
  display: none;
}

.module-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(430px, 74%);
  aspect-ratio: 0.52;
  background: linear-gradient(145deg, #eeeeee, #bababa);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.colibri .module-panel {
  transform: translate(-50%, -50%) rotate(3deg);
  background: linear-gradient(145deg, #ffffff, #d9d9d9);
}

.screen,
.knob,
.jack,
.slider {
  position: absolute;
  display: block;
}

.screen {
  top: 16%;
  left: 12%;
  width: 22%;
  height: 18%;
  background: #101010;
  border: 3px solid #2d2d2d;
}

.knob {
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #141414;
  box-shadow: inset 0 -5px 0 rgba(255, 255, 255, 0.12);
}

.knob.large {
  width: 17%;
  left: 58%;
  top: 22%;
  background: var(--accent);
}

.ornament .knob:nth-of-type(3) {
  left: 42%;
  top: 48%;
}

.ornament .knob:nth-of-type(4) {
  left: 62%;
  top: 50%;
}

.colibri .knob:nth-of-type(2) {
  left: 34%;
  top: 26%;
}

.jack {
  width: 9%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f6f6f6;
  border: 5px solid #111111;
}

.jack.accent {
  background: var(--accent);
}

.ornament .jack:nth-of-type(5),
.colibri .jack:nth-of-type(5) {
  left: 16%;
  top: 66%;
}

.ornament .jack:nth-of-type(6),
.colibri .jack:nth-of-type(6) {
  left: 32%;
  top: 68%;
}

.ornament .jack:nth-of-type(7),
.colibri .jack:nth-of-type(7) {
  left: 48%;
  top: 66%;
}

.ornament .jack:nth-of-type(8),
.colibri .jack:nth-of-type(8) {
  left: 64%;
  top: 68%;
}

.slider {
  top: 52%;
  width: 4px;
  height: 30%;
  background: #222222;
}

.slider:nth-of-type(3) {
  left: 42%;
}

.slider:nth-of-type(4) {
  left: 58%;
}

.slider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 34px;
  height: 10px;
  background: #111111;
  transform: translateX(-50%);
}

.card-copy {
  display: grid;
  align-content: start;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.7rem;
  background: var(--warm);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-copy h2 {
  margin: 0;
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.card-copy p {
  margin: 0.85rem 0 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
}

.detail-hero {
  display: grid;
  align-items: end;
  min-height: 240px;
  padding: clamp(2rem, 5vw, 4rem);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28)),
    linear-gradient(135deg, #111111, #343434);
}

.detail-hero div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: 100%;
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.detail-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  padding: 12px;
}

.placeholder-block {
  display: grid;
  place-items: center;
  height: 325px;
  min-height: 0;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.placeholder-block.wide {
  grid-column: 1 / -1;
  min-height: 260px;
}

.placeholder-block p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 800;
}

.video-panel {
  position: relative;
  height: 325px;
  min-height: 0;
  overflow: hidden;
  background: #111111;
  border: 1px solid var(--line);
}

.video-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.video-caption span,
.video-caption a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  background: rgba(8, 8, 8, 0.74);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.video-caption a {
  pointer-events: auto;
}

.video-caption a:hover {
  background: #ffffff;
  color: var(--ink);
}

.product-carousel {
  position: relative;
  align-self: start;
  height: 325px;
  min-height: 0;
  overflow: hidden;
  background: #111111;
  border: 1px solid var(--line);
}

.carousel-viewport {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  min-height: 0;
  transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.04);
}

.crop-front img {
  object-position: center;
}

.crop-controls img {
  object-position: center;
  transform: scale(1.08);
}

.crop-patch img {
  object-position: center;
  transform: scale(1.12);
}

.carousel-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.42);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-control:hover {
  background: #ffffff;
  color: var(--ink);
}

.carousel-control.previous {
  left: 1rem;
}

.carousel-control.next {
  right: 1rem;
}

.carousel-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.2rem;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.carousel-dots button.active {
  background: #ffffff;
}

.module-description {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 325px;
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.description-copy,
.module-functions {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: auto;
}

.module-functions {
  border-left: 1px solid var(--line);
  background: var(--bg);
}

.module-description h2,
.module-description h3 {
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.module-description h2 {
  max-width: 820px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 0.98;
}

.module-description h3 {
  margin: 2rem 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.module-description p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: justify;
  text-wrap: pretty;
}

.module-functions ul {
  display: block;
  max-width: 820px;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  list-style: disc;
}

.module-functions li {
  padding: 0;
  margin-bottom: 0.55rem;
  background: transparent;
  border: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}

.license-note {
  margin-bottom: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.downloads-panel {
  grid-column: 1 / -1;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--ink);
  color: #ffffff;
}

.downloads-panel h2 {
  margin: 0 0 1.5rem;
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

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

.download-list article {
  min-height: 130px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.download-list span {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-list p {
  margin: 0;
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2rem);
  flex-wrap: wrap;
  min-height: 82px;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  background:
    linear-gradient(120deg, #f078bd 0%, #a98cff 48%, #47d5df 100%);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(8, 8, 8, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.instagram-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.instagram-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.site-footer a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}


.module-card.sewing .product-media {
  background:
    radial-gradient(circle at 30% 22%, rgba(25, 167, 223, 0.28), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(241, 225, 79, 0.34), transparent 26%),
    linear-gradient(135deg, #eeeeea 0%, #d9d9d2 50%, #bfc6c6 100%);
}

.sewing .module-panel,
.sewing-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(145deg, #f7f7f1, #c9d0d0);
  transform: translate(-50%, -50%) rotate(1deg);
}

.sewing .screen.wide,
.sewing-panel .screen.wide {
  left: 13%;
  top: 13%;
  width: 46%;
  height: 14%;
  background: #121212;
}

.sewing .knob.large,
.sewing-panel .knob.large {
  left: 66%;
  top: 17%;
  background: var(--warm);
}

.sewing .knob:nth-of-type(3),
.sewing-panel .knob:nth-of-type(3) {
  left: 20%;
  top: 42%;
}

.sewing .knob:nth-of-type(4),
.sewing-panel .knob:nth-of-type(4) {
  left: 38%;
  top: 42%;
}

.sewing .slider:nth-of-type(5),
.sewing-panel .slider:nth-of-type(5) {
  left: 63%;
  top: 42%;
}

.sewing .jack:nth-of-type(6),
.sewing-panel .jack:nth-of-type(6) {
  left: 16%;
  top: 68%;
}

.sewing .jack:nth-of-type(7),
.sewing-panel .jack:nth-of-type(7) {
  left: 34%;
  top: 70%;
}

.sewing .jack:nth-of-type(8),
.sewing-panel .jack:nth-of-type(8) {
  left: 52%;
  top: 68%;
}

.sewing .jack:nth-of-type(9),
.sewing-panel .jack:nth-of-type(9) {
  left: 70%;
  top: 70%;
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 1rem;
  }

  .brand-name {
    display: none;
  }

  .site-nav {
    gap: 1.2rem;
  }

  .intro-hero {
    align-items: flex-start;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 360px;
  }

  .intro-feature {
    min-height: 180px;
    transform: rotate(0);
  }

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

  .module-card {
    grid-template-rows: minmax(300px, 54vh) auto;
  }

  .module-panel {
    width: min(300px, 68%);
  }

  .detail-hero {
    min-height: 240px;
  }

  .detail-hero div {
    grid-template-columns: 1fr;
  }

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

  .product-carousel,
  .carousel-viewport,
  .carousel-track {
    height: 300px;
    min-height: 0;
  }

  .placeholder-block {
    height: 300px;
  }

  .video-panel {
    height: 300px;
  }

  .video-caption {
    align-items: flex-start;
    flex-direction: column;
  }


  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .placeholder-block.wide {
    grid-column: auto;
  }

  .module-functions ul {
    grid-template-columns: 1fr;
  }

  .module-description {
    grid-template-columns: 1fr;
    height: auto;
  }

  .description-copy,
  .module-functions {
    min-height: 300px;
  }

  .module-functions {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .download-list {
    grid-template-columns: 1fr;
  }
}



