/* ---------- Tokens (dark is the default; [data-theme="light"] overrides) ---------- */
:root {
  --bg: oklch(0.19 0.01 60);
  --bg-alt: oklch(0.25 0.012 60);
  --ink: oklch(0.95 0.006 90);
  --ink-08: oklch(0.95 0.006 90 / 0.08);
  --ink-10: oklch(0.95 0.006 90 / 0.1);
  --ink-12: oklch(0.95 0.006 90 / 0.12);
  --ink-18: oklch(0.95 0.006 90 / 0.18);
  --ink-20: oklch(0.95 0.006 90 / 0.2);
  --ink-55: oklch(0.95 0.006 90 / 0.55);
  --ink-60: oklch(0.95 0.006 90 / 0.6);
  --ink-65: oklch(0.95 0.006 90 / 0.65);
  --ink-68: oklch(0.95 0.006 90 / 0.68);
  --ink-72: oklch(0.95 0.006 90 / 0.72);
  --ink-75: oklch(0.95 0.006 90 / 0.75);
  --light: oklch(0.98 0.006 90);
  --accent: oklch(0.68 0.13 82);
  --surface-inverse: oklch(0.1 0.01 60);
}

:root[data-theme="light"] {
  --bg: oklch(0.97 0.006 90);
  --bg-alt: oklch(0.945 0.008 85);
  --ink: oklch(0.16 0.01 60);
  --ink-08: oklch(0.16 0.01 60 / 0.08);
  --ink-10: oklch(0.16 0.01 60 / 0.1);
  --ink-12: oklch(0.16 0.01 60 / 0.12);
  --ink-18: oklch(0.16 0.01 60 / 0.18);
  --ink-20: oklch(0.16 0.01 60 / 0.2);
  --ink-55: oklch(0.16 0.01 60 / 0.55);
  --ink-60: oklch(0.16 0.01 60 / 0.6);
  --ink-65: oklch(0.16 0.01 60 / 0.65);
  --ink-68: oklch(0.16 0.01 60 / 0.68);
  --ink-72: oklch(0.16 0.01 60 / 0.72);
  --ink-75: oklch(0.16 0.01 60 / 0.75);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  width: 100%;
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: oklch(0.75 0.13 85 / 0.35); }
input::placeholder, textarea::placeholder { color: var(--ink-55); opacity: 1; }

.h2 { font-family: 'Archivo Black', sans-serif; margin: 0; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
}
.script-accent {
  font-family: 'Permanent Marker', cursive;
  color: var(--accent);
  font-weight: 400;
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn:hover { opacity: 0.85; }
.btn--dark { background: var(--surface-inverse); color: var(--light); }
.btn--outline { background: transparent; border: 1.5px solid var(--accent); color: var(--accent); }
.btn--outline-dark { background: transparent; border: 1.5px solid var(--ink-20); color: var(--ink); }
.btn--block { width: 100%; justify-content: center; padding: 16px; }

.link-underline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  display: inline-flex;
  gap: 8px;
  transition: opacity 0.2s ease;
}
.link-underline:hover { opacity: 0.7; }
.link-arrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: opacity 0.2s ease;
}
.link-arrow:hover { opacity: 0.7; }

/* ---------- Placeholder image blocks ---------- */
.img-placeholder {
  position: relative;
  background: repeating-linear-gradient(
    45deg,
    var(--ink-08),
    var(--ink-08) 10px,
    transparent 10px,
    transparent 20px
  ), var(--bg-alt);
  border: 1px dashed var(--ink-20);
  min-height: 100px;
  overflow: hidden;
}
.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-60);
  background: color-mix(in oklch, var(--bg) 55%, transparent);
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.img-placeholder:has(img)::after { content: none; }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-reveal-group] .service-item,
[data-reveal-group] .project-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal-group].is-visible .service-item,
[data-reveal-group].is-visible .project-card {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] .service-item:nth-child(1), [data-reveal-group] .project-card:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-group] .service-item:nth-child(2), [data-reveal-group] .project-card:nth-child(2) { transition-delay: 0.15s; }
[data-reveal-group] .service-item:nth-child(3), [data-reveal-group] .project-card:nth-child(3) { transition-delay: 0.25s; }
[data-reveal-group] .service-item:nth-child(4), [data-reveal-group] .project-card:nth-child(4) { transition-delay: 0.35s; }
[data-reveal-group] .project-card:nth-child(5) { transition-delay: 0.45s; }
[data-reveal-group] .project-card:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] .service-item,
  [data-reveal-group] .project-card {
    opacity: 1; transform: none; transition: none;
  }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 32px;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-08);
  flex-wrap: wrap;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 140px; width: auto; display: block; }

.nav__links { display: flex; gap: 18px; align-items: center; }
.nav__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.75;
  white-space: nowrap;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.nav__link:hover { opacity: 1; }
.nav__link.is-active {
  font-weight: 700;
  opacity: 1;
  border-bottom: 2px solid var(--accent);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex;
  border: 1px solid var(--ink-20);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-toggle__btn span[aria-hidden] { font-size: 13px; line-height: 1; }
.lang-toggle__btn.is-active { background: var(--surface-inverse); color: var(--light); }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--ink-20); border-radius: 50%;
  background: transparent; cursor: pointer; font-size: 15px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover { background: var(--ink-08); }
.theme-toggle__icon--moon { display: none; }
:root[data-theme="light"] .theme-toggle__icon--sun { display: none; }
:root[data-theme="light"] .theme-toggle__icon--moon { display: block; }

/* ---------- Component colors (dark is the default) ---------- */
.nav__logo-img { filter: invert(1); }
.trusted__logo-link { background: var(--light); border-radius: 8px; padding: 8px 14px; }
.clients-list__logo { background: var(--light); border-radius: 8px; padding: 6px; }
:root[data-theme="light"] .nav__logo-img { filter: none; }
:root[data-theme="light"] .trusted__logo-link { background: none; border-radius: 0; padding: 0; }
:root[data-theme="light"] .clients-list__logo { background: none; border-radius: 0; padding: 0; }

.nav__book { white-space: nowrap; flex-shrink: 0; padding: 11px 16px; font-size: 11px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 40px;
  padding: 64px 32px 80px;
  align-items: center;
}
.hero__headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: 52px;
  line-height: 1.08;
  margin: 18px 0 22px;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-72);
  max-width: 380px;
  margin: 0 0 28px;
}
.hero__ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn--store-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--ink); font-size: 15px; font-weight: 800;
  letter-spacing: 1px; padding: 20px 44px; border-radius: 100px;
  box-shadow: 0 10px 30px oklch(0.68 0.13 82 / 0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn--store-pill:hover { opacity: 0.9; transform: translateY(-2px); }

/* Full-bleed photo hero (home only) */
.hero--big {
  display: block; position: relative; overflow: hidden;
  min-height: 92vh; padding: 0; background: var(--surface-inverse);
  isolation: isolate;
}
.hero__photo {
  position: absolute; left: 0; right: 0; top: -160px; bottom: -160px;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  animation: heroPhotoReveal 1.2s cubic-bezier(0.65, 0, 0.35, 1) both;
  will-change: transform;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: brightness(0.8) contrast(1.05);
  animation: heroPhotoZoom 16s ease-in-out infinite alternate;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.16 0.01 60 / 0.25) 0%, oklch(0.16 0.01 60 / 0.15) 45%, oklch(0.16 0.01 60 / 0.75) 100%);
}
.hero__content {
  position: relative; z-index: 1; min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 40px; gap: 20px;
}
.hero__content .eyebrow { color: var(--accent); font-size: 13px; }
.hero__wordmark-stack { display: grid; }
.hero__wordmark-stack .hero__wordmark { grid-area: 1 / 1; }
.hero__wordmark {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 13vw, 168px);
  line-height: 0.86;
  color: oklch(0.98 0.006 90);
  margin: 0;
  text-transform: uppercase;
}
.hero__wordmark span { display: block; }
.hero__wordmark span:first-child {
  color: transparent;
  -webkit-text-stroke: 1px oklch(0.98 0.006 90);
}
.hero__wordmark--outline {
  display: none;
}

.hero__anim { opacity: 0; transform: translateY(28px); animation: heroFadeUp 0.8s ease both; }
.hero__content .eyebrow.hero__anim { animation-delay: 0.35s; }
.hero__wordmark-stack.hero__anim { animation-delay: 0.5s; }
.btn--store-pill.hero__anim { animation-delay: 0.85s; }

@keyframes heroPhotoReveal {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0%); }
}
@keyframes heroPhotoZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__photo, .hero__photo img, .hero__anim {
    animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important;
  }
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  padding: 80px 56px;
  background: var(--bg-alt);
  align-items: center;
}
.about__portrait { width: 100%; height: 520px; border-radius: 6px; }
.about__content .eyebrow { margin-bottom: 16px; }
.about__content .h2 { font-size: 38px; margin-bottom: 22px; }
.about__body { font-size: 15.5px; line-height: 1.75; color: var(--ink-75); max-width: 460px; margin: 0 0 26px; }
.about__body p { margin: 0 0 1.2em; }
.about__body p:last-child { margin-bottom: 0; }
.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--ink-12);
  flex-wrap: wrap;
}
.about__stat-value { font-family: 'Archivo Black', sans-serif; font-size: 28px; color: var(--accent); }
.about__stat-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--ink-60); margin-top: 4px; }

/* ---------- Services ---------- */
.services { padding: 80px 56px; text-align: center; }
.services .eyebrow { margin-bottom: 14px; }
.services .h2 { font-size: 32px; margin-bottom: 8px; }
.services__rule { width: 52px; height: 3px; background: var(--accent); margin: 0 auto 56px; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.service-item { padding: 0 28px; border-left: 1px solid var(--ink-12); }
.service-item:first-child { border-left: none; }
.service-item__icon {
  width: 52px; height: 52px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--accent); border-radius: 50%;
  color: var(--accent);
}
.svc-icon { width: 30px; height: 30px; overflow: visible; }

.svc-spray { animation: svc-spray-pulse 1.8s ease-in-out infinite; transform-origin: center; }
.svc-spray--2 { animation-delay: 0.5s; }
@keyframes svc-spray-pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.6) translateX(0); }
  50% { opacity: 1; transform: scale(1) translateX(-4px); }
}

.svc-stroke { animation: svc-draw 2.2s ease-in-out infinite; }
@keyframes svc-draw {
  0% { stroke-dashoffset: 20; }
  40%, 60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -20; }
}

.svc-live-dot { animation: svc-live-blink 1.4s ease-in-out infinite; transform-origin: center; }
.svc-live-ring { animation: svc-live-ring 1.4s ease-out infinite; transform-origin: center; }
@keyframes svc-live-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes svc-live-ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.2); opacity: 0; } }

.svc-ring-a { animation: svc-orbit-a 3s ease-in-out infinite; transform-origin: center; }
.svc-ring-b { animation: svc-orbit-b 3s ease-in-out infinite; transform-origin: center; }
@keyframes svc-orbit-a { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-3px); } }
@keyframes svc-orbit-b { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }

@media (prefers-reduced-motion: reduce) {
  .svc-spray, .svc-stroke, .svc-live-dot, .svc-live-ring, .svc-ring-a, .svc-ring-b { animation: none; }
}
.service-item__title { font-size: 15px; font-weight: 800; letter-spacing: 0.5px; margin: 0 0 10px; }
.service-item__desc { font-size: 13.5px; line-height: 1.6; color: var(--ink-65); margin: 0; }
.services__quote-link {
  display: inline-block;
  margin-top: 48px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-72);
  border-bottom: 1px solid var(--ink-20);
  padding-bottom: 3px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.services__quote-link:hover { opacity: 0.75; border-color: var(--accent); }

/* ---------- Portfolio ---------- */
.portfolio { padding: 0 56px 80px; }
.portfolio__header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px; flex-wrap: wrap; gap: 12px;
}
.portfolio__header .h2 { font-size: 28px; }
.portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card__img { width: 100%; height: 260px; border-radius: 3px; transition: transform 0.3s ease; }
.project-card:hover .project-card__img { transform: translateY(-4px); }
.project-card__body { margin-top: 14px; }
.project-card__title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.project-card__meta {
  font-size: 12px; color: var(--ink-60);
  display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.project-card__desc { font-size: 13px; line-height: 1.55; color: var(--ink-68); margin: 0; }

/* ---------- Shop ---------- */
.shop { padding: 0 56px 90px; }
.shop__header { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.shop__header .eyebrow { margin-bottom: 14px; }
.shop__header .h2 { font-size: 30px; margin-bottom: 14px; }
.shop__intro { font-size: 14px; line-height: 1.6; color: var(--ink-60); margin: 0; }
.shop__product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 40px;
  align-items: start;
}
.shop__product-img { width: 100%; height: 480px; border-radius: 4px; }

.shop__gallery { display: flex; flex-direction: column; gap: 12px; }
.shop__gallery-main {
  width: 100%; height: 440px; border-radius: 4px; overflow: hidden;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 24px;
}
.shop__gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shop__gallery-thumb {
  height: 110px; border-radius: 4px; overflow: hidden; cursor: pointer; transition: opacity 0.15s ease;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 10px;
}
.shop__gallery-thumb:hover { opacity: 0.8; }
.shop__gallery-main img, .shop__gallery-thumb img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  transition: transform 0.2s ease;
}
.shop__gallery-thumb:hover img { transform: scale(1.08); }
.shop__gallery-main img.is-zoomed { transform: scale(2.2); }

.shop__product-name { font-family: 'Archivo Black', sans-serif; font-size: 24px; margin-bottom: 6px; }
.shop__product-price { font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.shop__product-desc { font-size: 14px; line-height: 1.6; color: var(--ink-72); margin: 0 0 22px; }
.shop__product-desc p { margin: 0 0 1em; }
.shop__product-desc p:last-child { margin-bottom: 0; }

.shop__features {
  list-style: none; margin: 0 0 28px; padding: 16px 0; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 9px 16px;
  border-top: 1px solid var(--ink-12); border-bottom: 1px solid var(--ink-12);
}
.shop__features li { font-size: 12.5px; color: var(--ink-72); padding-left: 14px; position: relative; }
.shop__features li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.shop__personalize {
  margin: 4px 0 20px; padding: 16px; border: 1px solid var(--ink-18);
  border-radius: 4px; background: var(--bg);
}
.shop__personalize-toggle {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; cursor: pointer;
}
.shop__personalize-toggle input { width: 16px; height: 16px; accent-color: var(--ink); cursor: pointer; flex-shrink: 0; }
.shop__personalize-price {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
  color: var(--accent); margin: 6px 0 0 26px;
}
.shop__personalize-input {
  margin-top: 12px; width: 100%; padding: 12px 14px;
  border: 1px solid var(--ink-18); border-radius: 2px;
  font-size: 14px; font-family: inherit; background: var(--bg-alt); color: var(--ink);
}
.shop__personalize-input:focus { outline: none; border-color: var(--accent); }
.shop__personalize-input.has-error { border-color: #b0413e; }

.shop__field { margin-bottom: 16px; }
.shop__field label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--ink-60); margin-bottom: 10px;
}
.shop__field select, .shop__field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--ink-18);
  border-radius: 2px; font-size: 14px; font-family: inherit;
  background: var(--bg); color: var(--ink);
}
.shop__field--qty input { width: 100px; }
.shop__field--qty input:focus { outline: none; border-color: var(--accent); }

.shop__size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.shop__size-btn {
  min-width: 46px; padding: 10px 12px; border: 1px solid var(--ink-20);
  background: var(--bg); color: var(--ink); font-size: 12px; font-weight: 700;
  font-family: inherit; border-radius: 2px; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.shop__size-btn:hover { border-color: var(--ink-60); }
.shop__size-btn.is-active { background: var(--surface-inverse); color: var(--light); border-color: var(--surface-inverse); }

.paypal-buttons { margin: 20px 0 12px; min-height: 45px; }
.shopify-buy-button-container { margin: 20px 0 16px; min-height: 45px; }
.paypal-fallback {
  font-size: 13px; color: var(--ink-60); background: var(--bg);
  border: 1px dashed var(--ink-20); border-radius: 4px; padding: 14px 16px; line-height: 1.5;
}
.shop__success { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.shop__shipping-note { font-size: 12px; color: var(--ink-55); margin: 8px 0 0; }

/* ---------- Store ---------- */
.store { padding: 0 56px 90px; }
.store-page { max-width: 1100px; margin: 0 auto; padding: 56px 24px 90px; }
.store__header { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.store__header .eyebrow { margin-bottom: 14px; }
.store__header .h2 { font-size: 30px; margin-bottom: 14px; }
.store__intro { font-size: 14px; line-height: 1.6; color: var(--ink-60); margin: 0; }

.store__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.store__card {
  display: flex; flex-direction: column;
  background: var(--bg-alt); border-radius: 6px; overflow: hidden;
  transition: opacity 0.2s ease;
}
.store__card:hover { opacity: 0.85; }
.store__card-img {
  width: 100%; height: 380px; background: var(--bg);
  display: flex; align-items: center; justify-content: center; padding: 32px;
}
.store__card-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.store__card-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.store__card-title { font-family: 'Archivo Black', sans-serif; font-size: 20px; letter-spacing: 0.5px; }
.store__card-desc { font-size: 13.5px; line-height: 1.6; color: var(--ink-68); margin: 0 0 4px; flex: 1; }

/* ---------- Trusted-by strip (home teaser — full list lives at /clients/) ---------- */
.trusted { padding: 64px 56px; text-align: center; overflow: hidden; }
.trusted__eyebrow { display: block; margin-bottom: 32px; }
.trusted__track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.trusted__track { display: flex; align-items: center; gap: 64px; width: max-content; animation: trusted-scroll 28s linear infinite; }
.trusted__track:hover { animation-play-state: paused; }
.trusted__logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.trusted__logo { height: 46px; width: auto; opacity: 0.7; filter: grayscale(100%); transition: opacity 0.2s ease, filter 0.2s ease; }
.trusted__logo-link:hover .trusted__logo { opacity: 1; filter: grayscale(0%); }
.trusted__logo--text {
  height: auto; display: inline-flex; align-items: center;
  font-size: 15px; font-weight: 800; letter-spacing: 0.5px; color: var(--ink-55);
  white-space: nowrap; filter: none;
}
.trusted__logo-link:hover .trusted__logo--text { color: var(--ink); }
.trusted__empty { font-size: 13px; color: var(--ink-55); }
.trusted__link { justify-content: center; margin-top: 32px; }
@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trusted__track { animation: none; }
}

/* ---------- Clients page (full grid + quote, at /clients/) ---------- */
.clients {
  background: var(--bg-alt);
  padding: 70px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.clients__brands .eyebrow { margin-bottom: 24px; }
.clients__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 16px; }
.clients__brand {
  font-size: 14px; font-weight: 800; letter-spacing: 0.5px;
  color: var(--ink-55); text-align: center; padding: 10px 4px;
  border: 1px solid var(--ink-10); border-radius: 3px; background: var(--bg);
}
.clients-list { max-width: 720px; margin: 0 auto; border-top: 1px solid var(--ink-12); }
.clients-list__item { border-bottom: 1px solid var(--ink-12); }
.clients-list__trigger {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 18px 4px; background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left; color: var(--ink);
}
.clients-list__logo {
  width: 76px; height: 54px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.clients-list__logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.8; }
.clients-list__logo-text { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; color: var(--ink-55); }
.clients-list__title { flex: 1; font-size: 15px; font-weight: 700; }
.clients-list__chevron { font-size: 18px; color: var(--ink-55); transition: transform 0.25s ease; flex-shrink: 0; }
.clients-list__trigger[aria-expanded="true"] .clients-list__chevron { transform: rotate(180deg); }
.clients-list__trigger[aria-expanded="true"] .clients-list__logo img { filter: grayscale(0%); opacity: 1; }
.clients-list__panel { padding: 0 4px 22px 94px; }
.clients-list__panel p { font-size: 13.5px; line-height: 1.6; color: var(--ink-60); margin: 0; }
.clients__quote { display: flex; gap: 24px; align-items: center; }
.clients__quote-mark {
  font-family: 'Archivo Black', sans-serif; font-size: 60px;
  color: var(--accent); line-height: 0.4; flex-shrink: 0;
}
.clients__quote-text { font-size: 19px; line-height: 1.5; font-weight: 500; margin: 0 0 14px; }
.clients__quote-author { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--ink-60); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--surface-inverse);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner__headline { color: var(--light); font-size: 28px; }

/* ---------- Contact ---------- */
.contact { padding: 90px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__info .eyebrow { margin-bottom: 16px; }
.contact__info .h2 { font-size: 34px; margin-bottom: 20px; }
.contact__body { font-size: 15px; line-height: 1.7; color: var(--ink-72); max-width: 420px; margin: 0 0 32px; }
.contact__meta { display: flex; flex-direction: column; gap: 14px; }
.contact__email { font-size: 15px; font-weight: 700; transition: opacity 0.2s ease; }
.contact__email:hover { opacity: 0.7; }
.contact__location { font-size: 13px; color: var(--ink-60); }

.contact__form {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form input,
.contact__form textarea {
  padding: 14px 16px;
  border: 1px solid var(--ink-18);
  border-radius: 2px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  color: var(--ink);
  width: 100%;
}
.contact__form textarea { resize: vertical; }
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact__success { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ---------- Artwork gallery ---------- */
.artwork-page { max-width: 1100px; margin: 0 auto; padding: 56px 24px 90px; }
.artwork-page__header { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.artwork-page__header .eyebrow { margin-bottom: 14px; }
.artwork-page__header .h2 { font-size: 32px; margin-bottom: 14px; }
.artwork-page__intro { font-size: 14px; line-height: 1.6; color: var(--ink-60); margin: 0; }

.artwork-page__cover { margin: 0 0 48px; }
.artwork-page__cover img { width: 100%; height: 480px; object-fit: cover; object-position: center 22%; border-radius: 6px; display: block; }

.artwork-filters { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 0 0 40px; }
.artwork-filters__btn {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--ink-55);
  padding: 0 0 6px; border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.artwork-filters__btn:hover { color: var(--ink); }
.artwork-filters__btn.is-active { color: var(--ink); border-bottom-color: var(--accent); }

.artwork-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.artwork-card {
  background: var(--bg-alt); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
}
.artwork-card__media-link, .artwork-card__title-link { display: block; color: inherit; text-decoration: none; }
.artwork-card__img {
  width: 100%; height: 380px; background: var(--bg); overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 32px;
}
.artwork-card__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; transition: transform 0.2s ease; }
.artwork-card__img img.is-zoomed { transform: scale(2.2); }
.artwork-card__body { padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.artwork-card__title { font-family: 'Archivo Black', sans-serif; font-size: 16px; }
.artwork-card__price { font-size: 15px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.artwork-card__shipping { font-size: 11px; font-weight: 500; color: var(--ink-55); margin-left: 4px; }
.artwork-card__note { font-size: 11px; font-weight: 500; letter-spacing: 0.3px; color: var(--ink-55); }
.artwork-card__desc { font-size: 13px; line-height: 1.55; color: var(--ink-68); margin: 0 0 8px; }
.artwork-card__sold {
  align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  color: var(--ink-60); border: 1px solid var(--ink-20); border-radius: 2px; padding: 8px 14px;
}
.artwork-card .paypal-fallback { font-size: 12px; }

@media (max-width: 900px) {
  .artwork-grid { grid-template-columns: repeat(2, 1fr); }
  .artwork-page__cover img { height: 380px; }
}
@media (max-width: 600px) {
  .artwork-grid { grid-template-columns: 1fr; }
  .artwork-page { padding: 40px 20px 64px; }
  .artwork-card__img { height: 320px; padding: 24px; }
  .artwork-page__cover img { height: 300px; }
  .artwork-filters { gap: 18px; margin-bottom: 32px; }
}

/* ---------- Quote request page ---------- */
.quote-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}
.quote-page__intro { margin-bottom: 40px; }
.quote-page__intro .eyebrow { margin-bottom: 14px; }
.quote-page__headline { font-size: 32px; margin-bottom: 16px; }
.quote-page__body { font-size: 15px; line-height: 1.7; color: var(--ink-72); margin: 0; }
.quote-page__form { margin-bottom: 56px; }
.quote-page__form .shop__field { margin-bottom: 18px; }
.quote-page__form .shop__field:last-of-type { margin-bottom: 20px; }
.quote-page__dims { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-page__not-configured {
  margin-top: 12px; font-size: 12.5px; line-height: 1.5; color: var(--ink-60);
  background: var(--bg-alt); border: 1px dashed var(--ink-20); border-radius: 4px; padding: 12px 14px;
}
.quote-page__not-configured code { font-size: 12px; }
.quote-page__deposit {
  background: var(--bg-alt); border-radius: 6px; padding: 32px;
}
.quote-page__deposit-title { font-size: 20px; margin-bottom: 10px; }
.quote-page__deposit-desc { font-size: 13.5px; line-height: 1.6; color: var(--ink-72); margin: 0 0 16px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--surface-inverse);
  color: var(--light);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { height: 76px; width: auto; display: block; filter: invert(1); }
.footer__links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer__links a { font-size: 12px; font-weight: 600; letter-spacing: 1px; opacity: 0.8; transition: opacity 0.2s ease; }
.footer__links a:hover { opacity: 1; }
.footer__social { display: flex; gap: 14px; }
.footer__social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--ink);
  transition: opacity 0.2s ease;
}
.footer__social-btn:hover { opacity: 0.8; }

/* ---------- Cart ---------- */
.nav__cart-btn {
  position: relative; display: inline-flex; align-items: center;
  background: transparent; border: 1px solid var(--ink-20); border-radius: 100px;
  padding: 8px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--ink); cursor: pointer; font-family: inherit; flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.nav__cart-btn:hover { border-color: var(--ink-60); }
.nav__cart-badge {
  margin-left: 6px; background: var(--accent); color: var(--ink);
  font-size: 10px; font-weight: 800; border-radius: 100px;
  min-width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.cart-overlay {
  position: fixed; inset: 0; background: oklch(0.16 0.01 60 / 0.4);
  z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw;
  background: var(--bg); z-index: 91; box-shadow: -8px 0 30px oklch(0.16 0.01 60 / 0.15);
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--ink-08);
}
.cart-drawer__header h3 { font-family: 'Archivo Black', sans-serif; font-size: 16px; margin: 0; }
.cart-drawer__close {
  background: none; border: none; font-size: 24px; line-height: 1; cursor: pointer;
  color: var(--ink); padding: 0; width: 28px; height: 28px;
}

.cart-drawer__items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-drawer__empty { padding: 40px 24px; text-align: center; color: var(--ink-60); font-size: 13px; }

.cart-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid var(--ink-08);
}
.cart-item__title { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.cart-item__meta { font-size: 12px; color: var(--ink-60); font-variant-numeric: tabular-nums; }
.cart-item__remove {
  background: none; border: none; font-size: 20px; line-height: 1; cursor: pointer;
  color: var(--ink-55); padding: 0 4px; flex-shrink: 0;
}
.cart-item__remove:hover { color: var(--ink); }

.cart-drawer__footer { padding: 20px 24px; border-top: 1px solid var(--ink-08); }
.cart-drawer__total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; font-weight: 700; margin-bottom: 14px; font-variant-numeric: tabular-nums;
}
.cart-drawer__note { font-size: 11px; color: var(--ink-55); text-align: center; margin: 10px 0 0; }
#cartCheckoutBtn.is-disabled { opacity: 0.4; pointer-events: none; }

@media (max-width: 480px) {
  .nav__cart-btn span:first-child { display: none; }
  .nav__cart-badge { margin-left: 0; }
}

/* ================= Responsive ================= */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; row-gap: 40px; }
  .service-item:nth-child(2n+1) { border-left: none; }
  .service-item:nth-child(1), .service-item:nth-child(2) { border-left: none; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .shop__product { grid-template-columns: 1fr; }
  .shop__gallery-main { height: 360px; }
}

@media (max-width: 880px) {
  .nav__logo-img { height: 92px; }
  .nav__links, .nav__book { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 3;
    gap: 14px;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--ink-08);
  }
  .nav.is-open .nav__book { display: inline-flex; order: 4; margin-top: 12px; }
  .nav__burger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 40px 24px 56px; }
  .hero__headline { font-size: 38px; }

  .hero--big { min-height: 100vh; }
  .hero__content { min-height: 100vh; padding: 32px 20px 56px; }

  .about { grid-template-columns: 1fr; padding: 56px 24px; gap: 32px; }
  .about__portrait { height: 320px; }
  .about__body, .about__content .h2 { max-width: 100%; }

  .services { padding: 56px 24px; }
  .services__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-item { border-left: none !important; }

  .portfolio { padding: 0 24px 56px; }
  .portfolio__grid { grid-template-columns: 1fr; }

  .shop { padding: 0 24px 56px; }
  .shop__product { padding: 24px; gap: 24px; }
  .shop__gallery-main { height: 300px; }
  .shop__gallery-thumb { height: 90px; }
  .shop__features { grid-template-columns: 1fr; }

  .store { padding: 0 24px 56px; }
  .store-page { padding: 40px 20px 64px; }
  .store__grid { grid-template-columns: 1fr; }
  .store__card-img { height: 300px; }

  .trusted { padding: 48px 24px; }
  .trusted__track { gap: 40px; }

  .clients { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; }
  .clients-list__panel { padding-left: 4px; }

  .cta-banner { padding: 40px 24px; flex-direction: column; text-align: center; }

  .contact { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }

  .footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .nav__logo-img { height: 72px; }
  .hero__headline { font-size: 30px; }
  .quote-page__dims { grid-template-columns: 1fr; }
  .quote-page { padding: 56px 20px 72px; }
}
