/* KRT PRINTS - design system */
:root {
  --bg: #F6F2E9;
  --bg-soft: #EFE9DA;
  --bg-card: #FFFFFF;
  --ink: #121212;
  --ink-soft: #2D2D2D;
  --muted: #6E6557;
  --line: #E3DCC8;
  --accent: #FF4F2C;
  --accent-dark: #DB3D1E;
  --shadow-sm: 0 1px 2px rgba(18,18,18,0.04), 0 1px 1px rgba(18,18,18,0.03);
  --shadow-md: 0 12px 28px rgba(18,18,18,0.08), 0 4px 8px rgba(18,18,18,0.04);
  --shadow-lg: 0 24px 48px rgba(18,18,18,0.12);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 28px;
  --container: 1280px;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink); font-family: var(--sans);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(32px, 4.2vw, 56px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-size: 19px; font-weight: 600; font-family: var(--sans); letter-spacing: -0.01em; }
.eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--muted); }
.lead { font-size: clamp(18px, 1.4vw, 22px); color: var(--ink-soft); line-height: 1.55; max-width: 640px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 15px; letter-spacing: -0.005em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost { color: var(--ink); border: 1px solid var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-small { padding: 10px 18px; font-size: 14px; }
.btn-arrow::after { content: " \2192"; transition: transform .25s ease; display: inline-block; }
.btn-arrow:hover::after { transform: translateX(4px); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246,242,233,0.85); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
.brand-mark { width: 32px; height: 32px; background: var(--ink); color: #fff; display: grid; place-items: center; border-radius: 8px; font-family: var(--mono); font-size: 11px; font-weight: 700; }
.nav-links { display: none; gap: 32px; align-items: center; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: none; font-family: var(--mono); font-size: 13px; color: var(--ink); align-items: center; gap: 6px; }
.nav-phone::before { content: ""; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(34,197,94,0.18); }
@media (min-width: 1024px) { .nav-links { display: flex; } .nav-phone { display: inline-flex; } }
.menu-toggle { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-card); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 96px 0 120px; } }
.hero-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; } }
.hero-rating { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-card); font-size: 13px; margin-bottom: 28px; }
.stars { color: #F5B400; letter-spacing: 1px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-item strong { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.hero-meta-item span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow-lg); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: 24px; left: 24px; right: 24px; display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-radius: 14px; box-shadow: var(--shadow-sm); }
.hero-badge-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.hero-badge-text strong { display: block; font-size: 15px; }
.hero-badge-text span { font-size: 13px; color: var(--muted); }
.trust-strip { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: center; justify-content: space-between; }
.trust-label { font-size: 13px; color: var(--muted); font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.trust-items { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; font-size: 14px; color: var(--ink-soft); }
.trust-items span { display: inline-flex; align-items: center; gap: 8px; }
.trust-items svg { color: var(--accent); flex-shrink: 0; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { margin-bottom: 56px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.section-head h2 { max-width: 720px; margin-top: 16px; }
.section-head .lead { margin-top: 20px; }
.services-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-img { aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--muted); font-size: 15px; margin-bottom: 20px; flex: 1; }
.service-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { display: inline-block; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-family: var(--mono); letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.tag.tag-accent { color: var(--accent); border-color: var(--accent); }
.service-card-link { font-weight: 600; font-size: 14.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.service-card-link::after { content: "\2192"; transition: transform .25s ease; }
.service-card:hover .service-card-link::after { transform: translateX(3px); }
.how { background: var(--ink); color: #fff; }
.how h2 { color: #fff; }
.how .eyebrow { color: rgba(255,255,255,0.55); }
.how .eyebrow::before { background: rgba(255,255,255,0.55); }
.how .lead { color: rgba(255,255,255,0.75); }
.how-steps { display: grid; gap: 32px; margin-top: 56px; }
@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 32px; }
.step::before { content: ""; display: block; width: 100%; height: 1px; background: rgba(255,255,255,0.15); position: absolute; top: 0; }
.step-num { font-family: var(--mono); font-size: 13px; color: var(--accent); margin-bottom: 24px; letter-spacing: 0.05em; }
.step h3 { color: #fff; margin-bottom: 14px; }
.step p { color: rgba(255,255,255,0.7); font-size: 15.5px; }
.catalogue-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .catalogue-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .catalogue-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card-img { aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-badge { position: absolute; top: 14px; left: 14px; padding: 4px 10px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 999px; }
.product-card-body { padding: 18px 20px 22px; }
.product-card h4 { font-size: 17px; margin-bottom: 4px; }
.product-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: 14px; }
.product-card-price { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.product-card-price small { font-size: 12px; color: var(--muted); font-family: var(--sans); margin-right: 4px; }
.product-card-cat { color: var(--muted); font-size: 12.5px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }
.split { display: grid; gap: 56px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.split-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--bg-soft); box-shadow: var(--shadow-md); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: 24px; }
.split .lead { margin-bottom: 28px; }
.checklist { list-style: none; padding: 0; margin-bottom: 32px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.checklist li:last-child { border-bottom: 0; }
.checklist svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.reviews-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review { background: var(--bg-card); border: 1px solid var(--line); padding: 32px; border-radius: var(--radius); display: flex; flex-direction: column; }
.review-stars { color: #F5B400; margin-bottom: 18px; letter-spacing: 2px; }
.review p { font-family: var(--serif); font-size: 19px; line-height: 1.5; color: var(--ink); flex: 1; margin-bottom: 24px; }
.review-author { font-size: 14px; color: var(--muted); }
.review-author strong { color: var(--ink); display: block; font-size: 15px; margin-bottom: 2px; }
.cta-banner { background: var(--accent); color: #fff; border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-banner h2 { color: #fff; max-width: 720px; margin: 0 auto 20px; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 560px; margin: 0 auto 32px; }
.cta-banner .btn-ghost { color: #fff; border-color: #fff; }
.cta-banner .btn-ghost:hover { background: #fff; color: var(--accent); }
.faqs { max-width: 800px; margin: 0 auto; }
.faq { border-top: 1px solid var(--line); }
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 28px 0; font-family: var(--serif); font-size: 21px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 28px; color: var(--accent); font-family: var(--sans); font-weight: 300; transition: transform .25s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 28px; color: var(--ink-soft); font-size: 16.5px; max-width: 640px; }
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px 0 40px; margin-top: 0; }
.footer-grid { display: grid; gap: 48px; margin-bottom: 56px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 13px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.site-footer a { color: rgba(255,255,255,0.75); display: block; padding: 4px 0; font-size: 14.5px; }
.site-footer a:hover { color: #fff; }
.footer-brand { max-width: 360px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; display: grid; place-items: center; padding: 0; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 13px; }
.footer-bottom a { display: inline-block; padding: 0; }
.page-header { padding: 64px 0 40px; border-bottom: 1px solid var(--line); }
.breadcrumb { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 8px; }
.page-header h1 { font-size: clamp(36px, 5vw, 64px); max-width: 880px; }
.page-header .lead { margin-top: 20px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-label { font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-right: 4px; }
.chip { padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: all .2s ease; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-result-count { font-size: 13.5px; color: var(--muted); font-family: var(--mono); }
.product-detail { display: grid; gap: 48px; padding: 48px 0 96px; }
@media (min-width: 900px) { .product-detail { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.product-gallery { display: grid; gap: 12px; }
.gallery-main { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumb { aspect-ratio: 1/1; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-soft); cursor: pointer; border: 2px solid transparent; }
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info h1 { font-size: clamp(32px, 3.5vw, 52px); margin-bottom: 16px; }
.product-price { font-family: var(--serif); font-size: 32px; margin-bottom: 12px; }
.product-price small { font-size: 14px; color: var(--muted); font-family: var(--sans); margin-right: 8px; }
.product-desc { color: var(--ink-soft); margin-bottom: 28px; }
.product-options { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; margin-bottom: 24px; }
.product-options h4 { font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.product-options + .product-options { border-top: 0; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); cursor: pointer; }
.swatch.active { box-shadow: 0 0 0 2px var(--ink); }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size { min-width: 48px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); text-align: center; font-weight: 500; font-size: 13.5px; cursor: pointer; background: var(--bg-card); }
.size.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.product-cta .btn { flex: 1; min-width: 180px; }
.team-grid { display: grid; gap: 32px; margin-top: 48px; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); margin-bottom: 20px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-grid { display: grid; gap: 48px; padding: 48px 0 96px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; } }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 500; }
.field input, .field textarea, .field select { font-family: inherit; font-size: 16px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-card); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.contact-info { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info-row { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; }
.contact-info-row:last-of-type { border-bottom: 0; }
.contact-info-row svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.contact-info-row strong { display: block; font-size: 14px; font-family: var(--mono); letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.contact-info-row a, .contact-info-row p { font-size: 16px; color: var(--ink); }
.marquee { overflow: hidden; padding: 24px 0; background: var(--ink); color: #fff; border-bottom: 1px solid var(--line); }
.marquee-track { display: flex; gap: 80px; white-space: nowrap; animation: scroll 40s linear infinite; font-family: var(--serif); font-size: 32px; align-items: center; }
.marquee-track span { display: inline-flex; align-items: center; gap: 80px; }
.marquee-track svg { color: var(--accent); flex-shrink: 0; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.empty-state { text-align: center; padding: 60px 0; color: var(--muted); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
