:root {
  --ink: #171321;
  --muted: #665f70;
  --paper: #fff6ef;
  --surface: #fffdf9;
  --blush: #fff0f7;
  --sky: #eef6ff;
  --cream-deep: #f3e8df;
  --pink: #df3b91;
  --pink-dark: #a91868;
  --blue: #246bd6;
  --blue-dark: #173f8a;
  --mint: #dff5ef;
  --line: rgba(23, 19, 33, 0.12);
  --shadow: 0 20px 70px rgba(31, 24, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper), #fff1f7 45%, #eff7ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 249, 243, 0.94);
  box-shadow: 0 8px 28px rgba(31, 24, 44, 0.11);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 4px;
  text-decoration: none;
}

.brand img {
  width: 300px;
  height: auto;
}

.brand span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand span,
.site-header.is-open .brand span {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 13px;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.site-header.is-scrolled .main-nav a,
.site-header.is-open .main-nav a {
  color: var(--ink);
  text-shadow: none;
}

.main-nav a:hover {
  background: rgba(223, 59, 145, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px clamp(20px, 5vw, 72px) 0;
  color: #fff;
  background: #1d1725;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #171321 0%, #26162b 44%, #111d34 100%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(223, 59, 145, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(13, 10, 18, 0.58), rgba(13, 10, 18, 0.18) 58%, rgba(13, 10, 18, 0.04)),
    linear-gradient(0deg, rgba(13, 10, 18, 0.74), rgba(13, 10, 18, 0.06) 52%);
}

.hero-media img {
  position: absolute;
  right: clamp(24px, 7vw, 124px);
  bottom: clamp(52px, 8vw, 92px);
  width: min(48vw, 660px);
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  padding-bottom: 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ff8fc9;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5.8vw, 4.95rem);
  line-height: 1;
  letter-spacing: 0;
}

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

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

.lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.tags,
.filters,
.gallery-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 16px 42px rgba(223, 59, 145, 0.34);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.hero-contact a {
  color: inherit;
  text-decoration: none;
}

.hero-contact a:hover {
  color: #ff8fc9;
}

.hero-contact span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.button.ghost-dark {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

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

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: calc(clamp(20px, 5vw, 72px) * -1);
  background: linear-gradient(135deg, #fff6ef, #fff0f7 54%, #eef6ff);
  color: var(--ink);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.16);
}

.hero-strip span {
  display: grid;
  gap: 5px;
  padding: 20px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.hero-strip strong {
  font-weight: 950;
}

.hero-strip small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.anchor-offset {
  position: relative;
  top: -96px;
  display: block;
  width: 1px;
  height: 1px;
}

.page-hero {
  padding: 150px clamp(20px, 5vw, 72px) 74px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 19, 33, 0.97), rgba(36, 21, 45, 0.96) 52%, rgba(18, 36, 70, 0.96)),
    url("assets/hobiji_gatsby.png") right 8% bottom -70px / min(48vw, 620px) auto no-repeat;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.13rem;
}

.text-page-hero {
  background:
    linear-gradient(135deg, rgba(23, 19, 33, 0.98), rgba(39, 21, 48, 0.97) 52%, rgba(18, 36, 70, 0.96));
}

.text-page {
  max-width: 880px;
  margin: 0 auto;
}

.text-page h2 {
  margin-top: 36px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.text-page p {
  color: var(--muted);
  font-size: 1.08rem;
}

.product-body {
  background:
    linear-gradient(180deg, #fff8f1, #fff0f7 46%, #edf7ff 100%);
}

.force-light {
  background: rgba(255, 249, 243, 0.94);
  box-shadow: 0 8px 28px rgba(31, 24, 44, 0.11);
  backdrop-filter: blur(16px);
}

.product-detail {
  padding: 132px clamp(20px, 5vw, 72px) clamp(34px, 5vw, 64px);
}

.product-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--pink-dark);
  font-weight: 900;
  text-decoration: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 18%, rgba(223, 59, 145, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(255, 241, 248, 0.9) 54%, rgba(239, 247, 255, 0.92));
  box-shadow: 0 20px 60px rgba(31, 24, 44, 0.11);
}

.product-image-card {
  margin: 0;
  padding: clamp(14px, 2vw, 24px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.product-image-card a {
  display: block;
}

.product-image-card img {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  border-radius: 8px;
}

.product-detail-copy h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
}

.product-detail-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.product-detail-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #22574f;
  background: linear-gradient(135deg, var(--mint), #eef6ff);
  font-weight: 850;
}

.product-order {
  padding: 0 clamp(20px, 5vw, 72px) clamp(44px, 6vw, 84px);
}

.product-order-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.9fr) auto;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 63, 138, 0.96), rgba(18, 18, 31, 0.98) 52%, rgba(169, 24, 104, 0.95));
  box-shadow: var(--shadow);
}

.product-order-card h2,
.product-order-card p,
.product-order-card .eyebrow {
  color: #fff;
}

.product-order-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.product-order-links {
  display: grid;
  gap: 10px;
}

.product-order-links a {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.product-order-links span {
  color: #ff7fc1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-order-links strong {
  font-size: 1.05rem;
}

.product-index-hero {
  min-height: 430px;
}

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

.product-index-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(31, 24, 44, 0.08);
  text-decoration: none;
}

.product-index-card[hidden] {
  display: none;
}

.product-index-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.product-index-card span {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-index-card strong {
  font-size: 1.05rem;
  line-height: 1.16;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 14% 28%, rgba(223, 59, 145, 0.12), transparent 34%),
    linear-gradient(135deg, #fff7f0, #fff1f8 62%, #eef7ff);
}

.intro-media {
  position: relative;
  min-height: 390px;
}

.intro-media img {
  position: absolute;
  width: min(70%, 420px);
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-panel h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.85rem);
}

.intro-media img:first-child {
  left: 0;
  top: 6px;
  transform: rotate(-2deg);
}

.intro-media img:last-child {
  right: 0;
  bottom: 0;
  width: min(60%, 360px);
  transform: rotate(2deg);
}

.intro-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(23, 19, 33, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 48px rgba(31, 24, 44, 0.09);
  backdrop-filter: blur(10px);
}

.intro-text {
  color: var(--muted);
  font-size: 1.16rem;
}

.accent-band {
  padding: 30px clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 19, 33, 0.98), rgba(68, 27, 65, 0.96) 55%, rgba(22, 55, 112, 0.94));
}

.accent-band p {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  font-weight: 950;
  text-align: center;
}

.accent-band-soft {
  background:
    linear-gradient(135deg, #231629, #182744 62%, #6d1d57);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.02fr) minmax(360px, 0.98fr);
  gap: 0;
  background:
    linear-gradient(135deg, rgba(255, 249, 243, 0.96), rgba(255, 239, 247, 0.9) 48%, rgba(239, 247, 255, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(31, 24, 44, 0.11);
  overflow: hidden;
}

.feature,
.product-card,
.order-panel,
.contact-card,
.contact-actions a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 251, 0.86));
  box-shadow: 0 14px 40px rgba(31, 24, 44, 0.08);
}

.feature {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(24px, 4vw, 44px);
}

.feature:not(.large) {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  min-height: 0;
  padding: clamp(24px, 4vw, 44px);
}

.feature:not(.large) + .feature:not(.large) {
  border-top: 0;
}

.feature-thumb {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: contain;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 59, 145, 0.1), rgba(36, 107, 214, 0.1)),
    #fff;
  box-shadow: 0 12px 30px rgba(31, 24, 44, 0.1);
}

.feature.large {
  grid-row: span 2;
  display: grid;
  grid-template-columns: minmax(190px, 0.56fr) 1fr;
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
}

.feature.large img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 59, 145, 0.08), rgba(36, 107, 214, 0.08)),
    rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.feature-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 1.02;
}

.feature-copy h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.feature-label {
  margin: 18px 0 8px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature p,
.product-card p,
.section-copy p,
.order-panel li,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), #eef6ff);
  color: #22574f;
  font-size: 0.9rem;
  font-weight: 800;
}

.centered {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

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

.product-card {
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf9, #fff1f7);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(223, 59, 145, 0.08), rgba(36, 107, 214, 0.08)),
    #fff;
}

.product-card div {
  padding: 22px;
}

.product-card.accent {
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf9, #fff1f7);
}

.gallery-section {
  background:
    radial-gradient(circle at 82% 6%, rgba(36, 107, 214, 0.12), transparent 26%),
    linear-gradient(180deg, #fff1f7, #eef8ff);
}

.full-gallery {
  padding-top: 64px;
}

.filters {
  justify-content: center;
  margin-bottom: 28px;
}

.gallery-tools {
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto 28px;
}

.gallery-tools.compact {
  justify-content: center;
}

.gallery-tools label {
  flex: 1 1 280px;
}

.gallery-tools input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  box-shadow: 0 10px 26px rgba(31, 24, 44, 0.07);
}

.gallery-tools p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.filter {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.filter.active {
  color: #fff;
  background: var(--ink);
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9, #fff4fa);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(31, 24, 44, 0.09);
}

.gallery figure.is-hidden {
  display: none;
}

.gallery-loading {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.gallery button {
  width: 100%;
  padding: 0;
  border: 0;
  background:
    linear-gradient(135deg, rgba(223, 59, 145, 0.08), rgba(36, 107, 214, 0.08)),
    #fff;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.95;
  object-fit: contain;
  transition: transform 180ms ease;
}

.gallery button:hover img {
  transform: scale(1.04);
}

.gallery-category {
  display: inline-flex;
  margin: 12px 14px 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #edf5ff;
  font-size: 0.76rem;
  font-weight: 900;
}

.gallery figcaption {
  padding: 8px 14px 14px;
  min-height: 58px;
  font-weight: 850;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.load-more-wrap [hidden] {
  display: none;
}

.order-section {
  background:
    linear-gradient(135deg, #fff8f0, #fff1f7 52%, #eef7ff);
}

.order-panel {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(26px, 5vw, 54px);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-weight: 900;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 251, 0.95) 52%, rgba(239, 247, 255, 0.96)),
    var(--surface);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(223, 59, 145, 0.13), transparent 31%),
    radial-gradient(circle at 88% 72%, rgba(36, 107, 214, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.94), rgba(255, 240, 247, 0.88) 54%, rgba(239, 247, 255, 0.9));
  box-shadow: 0 20px 60px rgba(31, 24, 44, 0.11);
}

.contact-showcase {
  display: grid;
  gap: 14px;
}

.contact-media {
  position: relative;
  min-height: 235px;
}

.contact-media img {
  position: absolute;
  width: min(60%, 330px);
  aspect-ratio: 1 / 0.72;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.contact-media img:first-child {
  left: 2%;
  top: 4px;
  transform: rotate(-1deg);
}

.contact-media img:last-child {
  right: 2%;
  bottom: 8px;
  transform: rotate(1deg);
}

.contact-content {
  display: grid;
  gap: 14px;
}

.contact-card {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 0;
  padding: clamp(20px, 3vw, 30px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 18% 14%, rgba(223, 59, 145, 0.45), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(36, 107, 214, 0.42), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), #12121f 55%, var(--pink-dark));
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 24, 44, 0.09);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card p {
  position: relative;
  z-index: 1;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-order {
  padding: 22px;
  border: 1px solid rgba(23, 19, 33, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 247, 0.84));
}

.contact-order h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.contact-order .steps {
  gap: 8px;
  margin-top: 14px;
}

.contact-order .steps li {
  grid-template-columns: 30px 1fr;
  gap: 10px;
}

.contact-order .steps span {
  width: 30px;
  height: 30px;
}

.contact-actions {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-actions a {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--ink);
  border: 1px solid rgba(23, 19, 33, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 255, 0.82));
  box-shadow: none;
  text-decoration: none;
}

.contact-actions a:last-child {
  border-bottom: 1px solid rgba(23, 19, 33, 0.08);
}

.contact-actions a:hover strong {
  color: var(--pink-dark);
}

.contact-actions span {
  display: block;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-actions strong {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  transition: color 160ms ease;
}

.contact-mail {
  justify-self: stretch;
  margin-top: 14px;
}

.contact-panel-new {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 249, 253, 0.98), rgba(255, 244, 249, 0.9) 48%, rgba(238, 247, 255, 0.94));
}

.contact-intro {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 430px;
  padding: clamp(30px, 4.4vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 63, 138, 0.96), rgba(18, 18, 31, 0.98) 52%, rgba(169, 24, 104, 0.95));
}

.contact-intro .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.contact-intro h2 {
  max-width: 13ch;
  font-size: clamp(2.15rem, 3.5vw, 3.8rem);
  line-height: 1.02;
}

.contact-intro p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.contact-address {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.contact-address strong {
  color: #fff;
  font-size: 1.15rem;
}

.contact-hub {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  color: var(--ink);
  border: 1px solid rgba(23, 19, 33, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 251, 0.82));
  box-shadow: 0 14px 34px rgba(31, 24, 44, 0.08);
  text-decoration: none;
}

.contact-links a:hover strong {
  color: var(--pink-dark);
}

.contact-links span {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  transition: color 160ms ease;
}

.contact-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(23, 19, 33, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 247, 255, 0.68));
  overflow: hidden;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
}

.contact-steps li + li {
  border-top: 1px solid rgba(23, 19, 33, 0.08);
}

.contact-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-weight: 900;
}

.contact-steps p {
  margin: 0;
  color: var(--muted);
}

.contact-panel-new .contact-mail {
  justify-self: stretch;
  margin-top: 0;
  min-height: 58px;
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #171321;
}

.site-footer img {
  width: 220px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: #fff;
  font-weight: 850;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: clamp(12px, 3vw, 32px);
  right: clamp(12px, 3vw, 32px);
  bottom: clamp(12px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 243, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 60px 20px 32px;
  background: rgba(13, 10, 18, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(78vh, 760px);
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 16px 0 0;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .brand img {
    width: 235px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 249, 243, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    color: var(--ink);
    text-shadow: none;
  }

  .intro,
  .feature-grid,
  .contact-panel,
  .order-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 0;
  }

  .feature:not(.large) {
    border-left: 0;
    border-top: 0;
  }

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

  .contact-intro {
    min-height: 0;
  }

  .contact-intro h2 {
    max-width: 16ch;
  }

  .intro-media {
    min-height: 320px;
  }

  .intro-media img {
    width: min(54%, 320px);
  }

  .intro-media img:last-child {
    width: min(50%, 300px);
    right: 4%;
    bottom: 24px;
  }

  .contact-media {
    min-height: 300px;
  }

  .contact-media img {
    width: min(62%, 360px);
  }

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

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

  .order-panel {
    align-items: start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .product-detail-grid,
  .product-order-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 190px;
  }

  .brand span {
    display: none;
  }

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

  .hero-media img {
    right: -92px;
    bottom: 148px;
    width: 520px;
    max-width: none;
    opacity: 0.58;
  }

  .hero-content {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    padding-bottom: 42px;
  }

  h1 {
    width: 100%;
    font-size: 2.18rem;
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .lead {
    font-size: 1.02rem;
  }

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

  .hero-strip span {
    padding: 15px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-media {
    min-height: 260px;
  }

  .intro-media img {
    width: 68%;
    max-height: none;
    object-fit: initial;
  }

  .intro-media img:last-child {
    width: 60%;
    right: 0;
    bottom: 16px;
  }

  .intro-panel {
    padding: 22px;
  }

  .feature.large {
    grid-template-columns: 1fr;
  }

  .feature:not(.large) {
    grid-template-columns: 128px 1fr;
    padding: 22px;
  }

  .feature-thumb {
    width: 128px;
  }

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

  .contact-actions a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-links a,
  .contact-steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-panel-new {
    padding: 0;
  }

  .contact-intro,
  .contact-hub {
    padding: 24px;
  }

  .contact-intro h2 {
    font-size: 2.15rem;
  }

  .contact-panel-new .contact-mail {
    justify-self: stretch;
  }

  .contact-media {
    min-height: 230px;
  }

  .contact-media img {
    width: 68%;
  }

  .button,
  .filter {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .product-detail {
    padding-top: 108px;
  }

  .product-detail-grid,
  .product-order-card {
    padding: 20px;
  }

  .product-detail-copy h1 {
    font-size: 2.25rem;
  }

  .product-order-links a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-index-grid {
    grid-template-columns: 1fr;
  }
}
