/* ---------- Tokens ---------- */
:root {
  --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);
  --light: oklch(0.98 0.006 90);
  --accent: oklch(0.68 0.13 82);
}

/* ---------- 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;
}
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); }

.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(--ink); 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: oklch(0.97 0.006 90 / 0.55);
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder:has(img)::after { content: 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: oklch(0.97 0.006 90 / 0.92);
  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: 84px; 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 {
  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.is-active { background: var(--ink); color: var(--light); }

.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; }
.hero__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 14px;
  height: 560px;
  min-width: 0;
}
.hero__main { width: 100%; height: 100%; }
.hero__thumbs { display: flex; flex-direction: column; gap: 14px; }
.hero__thumb { flex: 1; }

/* ---------- 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%;
}
.service-item__icon span { width: 18px; height: 18px; background: var(--accent); display: block; }
.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; }
.shop__gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shop__gallery-thumb { height: 110px; border-radius: 4px; cursor: pointer; transition: opacity 0.15s ease; }
.shop__gallery-thumb:hover { opacity: 0.8; }

.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__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__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(--ink); color: var(--light); border-color: var(--ink); }

.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; }

/* ---------- 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__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(--ink);
  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; }

/* ---------- 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(--ink);
  color: var(--light);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { height: 60px; 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; }

/* ================= 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: 56px; }
  .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__gallery { height: 380px; margin-top: 16px; }

  .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; }

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

  .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: 46px; }
  .hero__headline { font-size: 30px; }
  .hero__gallery { grid-template-columns: 1fr 80px; height: 320px; }
  .quote-page__dims { grid-template-columns: 1fr; }
  .quote-page { padding: 56px 20px 72px; }
}
