/* SUK IMPEKS — static stylesheet */
:root {
  --background: oklch(0.984 0.006 80);
  --paper: oklch(0.958 0.008 80);
  --ink: oklch(0.14 0.008 60);
  --ink-soft: oklch(0.38 0.008 60);
  --rule: oklch(0.86 0.012 70);
  --gold: oklch(0.66 0.09 75);
  --whatsapp: oklch(0.62 0.16 145);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: var(--font-sans); scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { background: var(--background); color: var(--ink); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; padding-bottom: 56px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* layout */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
.hairline { height: 1px; background: var(--rule); }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
section { border-top: 1px solid var(--rule); }
section.no-top { border-top: 0; }
.section-pad { padding: 64px 0; }
@media (min-width: 768px) { .section-pad { padding: 112px 0; } }
.muted { color: var(--ink-soft); }
.gold { color: var(--gold); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(4px); transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 900ms cubic-bezier(0.22,1,0.36,1), filter 900ms ease; will-change: opacity, transform, filter; }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; } }

/* nav */
.nav { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid color-mix(in oklab, var(--rule) 70%, transparent); background: color-mix(in oklab, var(--background) 88%, transparent); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; max-width: 1240px; margin: 0 auto; }
@media (min-width: 768px) { .nav-inner { padding: 16px 40px; } }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: 50%; background: var(--background); font-family: var(--font-display); font-size: 18px; letter-spacing: -0.04em; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.18em; }
.logo-since { font-size: 10px; letter-spacing: 0.32em; color: var(--ink-soft); margin-top: 4px; }
.nav-links { display: none; gap: 32px; align-items: center; font-size: 14px; }
.nav-links a { color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px) { .nav-links { display: flex; } .nav-right { gap: 16px; } }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-size: 14px; transition: all .2s; cursor: pointer; }
.btn svg { width: 16px; height: 16px; }
.btn-ink { background: var(--ink); color: var(--background); }
.btn-ink:hover { opacity: .9; }
.btn-outline { border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--background); }
.btn-ghost { border: 1px solid var(--rule); color: var(--ink-soft); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-wa { background: var(--whatsapp); color: var(--background); }
.btn-wa:hover { opacity: .9; }
.btn-call-nav { display: none; }
@media (min-width: 768px) { .btn-call-nav { display: inline-flex; } }

/* lang switch */
.lang { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--rule); border-radius: 999px; padding: 4px; }
.lang button { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 999px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); transition: color .2s; }
.lang button[aria-pressed="true"] { color: var(--ink); }
.lang .flag { width: 20px; height: 20px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 1px var(--rule); opacity: .7; }
.lang button[aria-pressed="true"] .flag { box-shadow: 0 0 0 1px var(--ink); opacity: 1; }
.lang .flag img { width: 100%; height: 100%; object-fit: cover; }
.lang-divider { width: 1px; height: 12px; background: var(--rule); }
.lang-code { display: none; }
@media (min-width: 768px) { .lang-code { display: inline; } }

/* mobile menu */
.burger { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--rule); border-radius: 50%; }
@media (min-width: 768px) { .burger { display: none; } }
.burger span { position: relative; display: block; width: 16px; }
.burger i { display: block; height: 1px; background: var(--ink); transition: transform .2s, opacity .2s; }
.burger i + i { margin-top: 5px; }
.burger.open i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid color-mix(in oklab, var(--rule) 70%, transparent); }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; max-width: 1240px; margin: 0 auto; padding: 12px 20px; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid color-mix(in oklab, var(--rule) 50%, transparent); font-size: 16px; }
.mobile-menu a:last-child { border-bottom: 0; }

/* hero */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 48px; padding: 40px 0 64px; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 40px; padding: 80px 0 112px; } }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-size: 40px; line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance; }
@media (min-width: 768px) { .hero h1 { font-size: 76px; line-height: 0.98; } }
.hero h1 em { font-style: normal; color: var(--ink-soft); }
.hero-lead { margin-top: 24px; max-width: 560px; font-size: 16px; color: var(--ink-soft); line-height: 1.65; }
@media (min-width: 768px) { .hero-lead { font-size: 18px; } }
.hero-sub { margin-top: 12px; font-style: italic; font-size: 14px; color: color-mix(in oklab, var(--ink-soft) 80%, transparent); }
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-stats { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px; max-width: 520px; }
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stats li { border-top: 1px solid var(--rule); padding-top: 12px; }
.hero-stats .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.hero-stats .v { margin-top: 4px; font-family: var(--font-display); font-size: 18px; }

.hero-collage { position: relative; }
.hero-collage .lead { position: relative; aspect-ratio: 4/5; background: var(--paper); overflow: hidden; border-radius: 2px; }
.hero-collage .lead img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .badge { position: absolute; left: 16px; top: 16px; border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent); background: color-mix(in oklab, var(--background) 80%, transparent); padding: 4px 12px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); border-radius: 999px; backdrop-filter: blur(6px); }
.hero-collage .foot, .hero-collage .side { display: none; }
@media (min-width: 768px) {
  .hero-collage .foot { display: block; position: absolute; left: -24px; bottom: 40px; width: 176px; aspect-ratio: 4/5; overflow: hidden; background: var(--paper); border-radius: 2px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.25); }
  .hero-collage .side { display: block; position: absolute; right: -16px; top: -16px; width: 144px; aspect-ratio: 1; overflow: hidden; background: var(--paper); border-radius: 2px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.2); }
  .hero-collage .foot img, .hero-collage .side img { width: 100%; height: 100%; object-fit: cover; }
}

/* intro */
.intro-grid { display: grid; gap: 40px; }
@media (min-width: 768px) { .intro-grid { grid-template-columns: 3fr 9fr; } }
.intro p { font-family: var(--font-display); font-size: 24px; line-height: 1.25; letter-spacing: -0.015em; text-wrap: balance; }
@media (min-width: 768px) { .intro p { font-size: 34px; line-height: 1.2; } }

/* section header */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
@media (min-width: 768px) { .sec-head { margin-bottom: 64px; } }
.sec-head h2 { font-size: 30px; }
@media (min-width: 768px) { .sec-head h2 { font-size: 48px; } }
.sec-head .sub { display: none; max-width: 360px; color: var(--ink-soft); }
@media (min-width: 768px) { .sec-head .sub { display: block; } }

/* categories grid */
.cats { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); grid-template-columns: 1fr; }
@media (min-width: 640px) { .cats { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cats { grid-template-columns: repeat(3, 1fr); } }
.cat { background: var(--background); padding: 24px; display: flex; flex-direction: column; }
@media (min-width: 768px) { .cat { padding: 32px; } }
.cat-img { aspect-ratio: 5/4; background: var(--paper); overflow: hidden; margin-bottom: 24px; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.cat:hover .cat-img img { transform: scale(1.03); }
.cat-head { display: flex; align-items: baseline; gap: 12px; }
.cat-num { font-size: 12px; letter-spacing: 0.2em; color: var(--ink-soft); }
.cat h3 { font-size: 20px; }
@media (min-width: 768px) { .cat h3 { font-size: 22px; } }
.cat p { margin-top: 12px; font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

/* gallery */
.gallery-section { background: color-mix(in oklab, var(--paper) 60%, transparent); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.gallery .item { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--background); }
.gallery .item.tall { grid-row: span 2; aspect-ratio: 3/4; }
@media (min-width: 768px) { .gallery .item.tall { aspect-ratio: auto; } }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery .item:hover img { transform: scale(1.04); }
.gallery .cap { position: absolute; inset: 0; display: flex; align-items: flex-end; background: linear-gradient(to top, color-mix(in oklab, var(--ink) 55%, transparent), transparent 60%); opacity: 0; transition: opacity .5s; }
.gallery .item:hover .cap { opacity: 1; }
.gallery .cap span { margin: 16px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--background); }

/* tradition */
.trad-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .trad-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.trad-left h2 { font-size: 30px; line-height: 1.05; }
@media (min-width: 768px) { .trad-left h2 { font-size: 48px; } }
.trad-left p { margin-top: 24px; color: var(--ink-soft); line-height: 1.65; }
.trad-img { display: none; margin-top: 32px; aspect-ratio: 5/4; overflow: hidden; background: var(--paper); }
@media (min-width: 768px) { .trad-img { display: block; } }
.trad-img img { width: 100%; height: 100%; object-fit: cover; }
.trad-list li { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--rule); }
.trad-list li:first-child { border-top: 0; padding-top: 0; }
.trad-chap { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.trad-year { margin-top: 8px; font-family: var(--font-display); font-size: 24px; }
@media (min-width: 768px) { .trad-year { font-size: 30px; } }
.trad-list h3 { font-size: 20px; }
@media (min-width: 768px) { .trad-list h3 { font-size: 24px; } }
.trad-list p { margin-top: 8px; color: var(--ink-soft); line-height: 1.65; }

/* benefits — dark band */
.benefits { background: var(--ink); color: var(--background); }
.benefits h2 { color: var(--background); font-size: 30px; }
@media (min-width: 768px) { .benefits h2 { font-size: 48px; } }
.benefits .eyebrow { color: color-mix(in oklab, var(--background) 70%, transparent); }
.benefits-grid { display: grid; gap: 1px; background: color-mix(in oklab, var(--background) 10%, transparent); border: 1px solid color-mix(in oklab, var(--background) 10%, transparent); grid-template-columns: 1fr; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit { background: var(--ink); padding: 24px; }
@media (min-width: 768px) { .benefit { padding: 32px; } }
.benefit .n { font-size: 11px; letter-spacing: 0.28em; color: var(--gold); }
.benefit h3 { margin-top: 24px; font-size: 20px; color: var(--background); }
.benefit p { margin-top: 12px; font-size: 14px; line-height: 1.65; color: color-mix(in oklab, var(--background) 70%, transparent); }

/* whatsapp band */
.wa-card { display: grid; gap: 32px; padding: 24px; border: 1px solid var(--rule); background: var(--background); border-radius: 2px; }
@media (min-width: 768px) { .wa-card { grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding: 48px; } }
.wa-card h2 { font-size: 24px; line-height: 1.2; }
@media (min-width: 768px) { .wa-card h2 { font-size: 36px; } }
.wa-card .eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.wa-card .eyebrow svg { color: var(--whatsapp); width: 14px; height: 14px; }
.wa-card p { margin-top: 16px; max-width: 28rem; color: var(--ink-soft); line-height: 1.65; }
.wa-card a.btn-wa { margin-top: 28px; }
.wa-divider { display: none; }
@media (min-width: 768px) { .wa-divider { display: block; width: 1px; height: 128px; background: var(--rule); } }
.wa-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wa-thumbs > div { aspect-ratio: 1; overflow: hidden; background: var(--paper); }
.wa-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* faq */
.faq-section { background: color-mix(in oklab, var(--paper) 60%, transparent); }
.faq-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .faq-grid { grid-template-columns: 4fr 8fr; } }
.faq-left h2 { font-size: 30px; }
@media (min-width: 768px) { .faq-left h2 { font-size: 48px; } }
.faq-list li { border-top: 1px solid var(--rule); }
.faq-list li:last-child { border-bottom: 1px solid var(--rule); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 20px 0; text-align: left; }
.faq-q span.q { font-family: var(--font-display); font-size: 16px; }
@media (min-width: 768px) { .faq-q span.q { font-size: 18px; } }
.faq-icon { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid color-mix(in oklab, var(--ink) 60%, transparent); border-radius: 50%; flex-shrink: 0; transition: transform .3s; }
.faq-icon svg { width: 14px; height: 14px; }
.faq-list li.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.faq-list li.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; min-height: 0; }
.faq-a p { padding: 0 48px 24px 0; color: var(--ink-soft); line-height: 1.65; }

/* contact */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-list .icon { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--rule); border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.contact-list .icon svg { width: 16px; height: 16px; }
.contact-list .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-soft); }
.contact-list .v { display: block; margin-top: 2px; font-family: var(--font-display); font-size: 18px; }
.hours { border-top: 1px solid var(--rule); padding-top: 24px; margin-top: 24px; }
.hours .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-soft); margin-bottom: 12px; }
.hours li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid color-mix(in oklab, var(--rule) 60%, transparent); font-size: 15px; }
.hours li span.d { color: var(--ink-soft); }

.form { display: grid; gap: 20px; padding: 24px; border: 1px solid var(--rule); background: var(--background); border-radius: 2px; }
@media (min-width: 768px) { .form { padding: 40px; } }
.form-row { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-soft); }
.field .lbl .req { color: var(--gold); }
.field input, .field textarea { margin-top: 8px; width: 100%; border: 0; border-bottom: 1px solid var(--rule); background: transparent; padding: 10px 0; font: inherit; font-size: 15px; color: var(--ink); outline: none; transition: border-color .2s; font-family: inherit; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--ink); }
.form-foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; padding-top: 8px; }
.form-foot .note { font-size: 12px; color: var(--ink-soft); max-width: 28rem; }

/* footer */
.footer { background: var(--ink); color: var(--background); }
.footer-grid { display: grid; gap: 40px; padding: 56px 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; } }
.footer .logo-mark { border-color: var(--background); background: transparent; color: var(--background); }
.footer .logo-name, .footer .logo-since { color: var(--background); }
.footer-tag { margin-top: 24px; max-width: 28rem; font-size: 14px; line-height: 1.65; color: color-mix(in oklab, var(--background) 72%, transparent); }
.footer-sub { margin-top: 12px; font-size: 12px; font-style: italic; color: color-mix(in oklab, var(--background) 60%, transparent); }
.footer-rating { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: color-mix(in oklab, var(--background) 70%, transparent); }
.footer-rating svg { color: var(--gold); width: 14px; height: 14px; }
.footer h4 { font-family: var(--font-sans); font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em; margin-bottom: 16px; color: color-mix(in oklab, var(--background) 60%, transparent); font-weight: 500; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; color: color-mix(in oklab, var(--background) 85%, transparent); }
.footer-col ul li a:hover { color: var(--background); }
.footer-hours { padding-top: 8px !important; font-size: 12px !important; color: color-mix(in oklab, var(--background) 65%, transparent) !important; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid color-mix(in oklab, var(--background) 15%, transparent); font-size: 12px; color: color-mix(in oklab, var(--background) 60%, transparent); }

/* mobile bar */
.mobile-bar { position: fixed; inset: auto 0 0 0; z-index: 40; border-top: 1px solid var(--rule); background: color-mix(in oklab, var(--background) 95%, transparent); backdrop-filter: blur(8px); display: grid; grid-template-columns: repeat(3, 1fr); }
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; font-size: 14px; }
.mobile-bar a + a { border-left: 1px solid var(--rule); }
.mobile-bar .wa { color: var(--whatsapp); }
.mobile-bar svg { width: 16px; height: 16px; }

/* floating wa */
.fab { position: fixed; bottom: 24px; right: 24px; z-index: 40; width: 56px; height: 56px; display: none; place-items: center; border-radius: 50%; background: var(--whatsapp); color: var(--background); box-shadow: 0 14px 30px -10px rgba(0,0,0,.35); transition: transform .2s; }
.fab:hover { transform: scale(1.05); }
.fab svg { width: 24px; height: 24px; }
@media (min-width: 768px) { .fab { display: grid; } }

/* language visibility */
[data-lang-mk], [data-lang-sq] { display: none; }
html[lang="mk"] [data-lang-mk] { display: revert; }
html[lang="sq"] [data-lang-sq] { display: revert; }
