/* ===== Nochka — warm editorial theme (cream · charcoal · gold) ===== */
:root {
  --bg: #f8f5f0;            /* warm cream */
  --bg-soft: #efe9e0;       /* deeper sand */
  --bg-card: #f8f5f0;
  --ink: #2a2722;           /* warm charcoal */
  --ink-soft: #6e685f;      /* muted taupe */
  --line: #e3dbcd;          /* hairline */
  --accent: #2a2722;        /* charcoal (buttons) */
  --accent-dark: #1f1d19;
  --gold: #9a7b4f;          /* muted antique gold */
  --gold-soft: #b89a6a;
  --accent-soft: #efe9e0;
  --shadow: 0 24px 60px rgba(42, 39, 34, 0.12);
  --radius: 2px;
  --maxw: 1240px;
  --header-h: 116px;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font: var(--sans);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 112.5%; } /* ~18px base */

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 1.0rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* Brighten project / workflow photography for a clean, airy look */
.card__media img,
.gallery img,
.step__media img,
.usp__media img { filter: brightness(1.04) contrast(1.01); }

a { color: inherit; text-decoration: none; }

/* ===== Serif editorial display type ===== */
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.12;
  margin: 0 0 .4em;
  font-weight: 500;
  letter-spacing: .005em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: .5em; font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.section { padding: 104px 0; }
.section--soft { background: var(--bg-soft); }
.section__lead { max-width: 720px; margin: 0 auto 56px; text-align: center; color: var(--ink-soft); font-size: 1.15rem; }
.section__title { text-align: center; margin-bottom: 64px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .28em;
  font-size: .72rem; font-weight: 600; color: var(--gold); margin-bottom: 18px;
}

/* ===== Buttons — squared, letter-spaced, editorial ===== */
.btn {
  display: inline-block; padding: 16px 34px; border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600; font-size: .72rem; cursor: pointer;
  text-transform: uppercase; letter-spacing: .22em; border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--primary { background: var(--accent); color: #f8f5f0; }
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,245,240,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 78px; width: auto; }
.nav { display: flex; align-items: center; gap: 40px; }
.nav a {
  font-family: var(--sans); font-weight: 500; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .2em; color: var(--ink-soft);
  padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.nav a:hover, .nav a.active { color: var(--ink); border-bottom-color: var(--gold); }
.nav .btn { padding: 12px 24px; border-bottom: 0; }
.nav-social { display: flex; align-items: center; gap: 14px; padding-left: 8px; }
.nav-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(42,39,34,.22); color: var(--ink-soft); display: grid; place-items: center; padding: 0; transition: background .2s, border-color .2s, color .2s; }
.nav-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.nav-social svg { width: 22px; height: 22px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; transform: scale(1.05);
}
.hero__slide.is-active { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,18,15,.62) 0%, rgba(20,18,15,.34) 55%, rgba(20,18,15,.18) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: .3em; font-weight: 500; }
.hero p {
  font-family: var(--sans); font-size: .82rem; color: rgba(255,255,255,.92); max-width: 560px;
  font-weight: 500; text-transform: uppercase; letter-spacing: .12em; line-height: 2;
}
.hero__cta { margin-top: 36px; display: flex; gap: 18px; flex-wrap: wrap; }

/* Equal-size action buttons across hero + contact */
.hero__cta .btn,
.contact-actions .btn { min-width: 280px; text-align: center; }

/* ===== Project cards — borderless, editorial ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.card {
  background: transparent; border-radius: 0; overflow: visible;
  box-shadow: none; border: 0; transition: transform .3s ease;
}
.card:hover { transform: translateY(-4px); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 20px 2px 0; }
.card__type { font-size: .68rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); }
.card__title { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; margin: 8px 0 0; }
.center-link { text-align: center; margin-top: 64px; }
.center-link a {
  font-family: var(--sans); font-weight: 600; font-size: .74rem; text-transform: uppercase;
  letter-spacing: .2em; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 5px;
}
.center-link a:hover { color: var(--gold); }

/* ===== Feature / benefits grid ===== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { background: var(--bg); border: 0; border-radius: 0; padding: 48px 38px; }
.feature__icon { width: 48px; height: 48px; margin-bottom: 1.25rem; color: var(--accent); }
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 { font-size: 1.6rem; margin-bottom: .5em; }
.feature p { color: var(--ink-soft); margin: 0; }

/* ===== USP split ===== */
.usp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.usp__media img { border-radius: 0; box-shadow: var(--shadow); width: 100%; }
.usp__body h3 { font-size: 1.6rem; }
.usp__body p { color: var(--ink-soft); }
.usp__body .btn { margin-top: 12px; }

/* ===== Process steps ===== */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.step { text-align: left; }
.step__media { width: 150px; max-width: 100%; aspect-ratio: 1/1; border-radius: 0; overflow: hidden; margin-bottom: 20px; position: relative; }
.step__media img { width: 100%; height: 100%; object-fit: cover; }
.step__num {
  position: absolute; top: 0; left: 0; width: 46px; height: 46px; border-radius: 0;
  background: var(--bg); color: var(--ink); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem;
}
.step__icon { width: 72px; height: 72px; margin-bottom: 20px; color: var(--accent); }
.step__icon svg { width: 100%; height: 100%; }
.step h3 { font-size: 1.6rem; margin-bottom: .3em; }
.step__index { color: var(--gold); font-weight: 600; }
.step p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ===== Pricing / Cjenik ===== */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; padding: 38px 30px;
  border: 1px solid var(--line); background: var(--bg);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(42,39,34,.10); border-color: var(--gold); }
.price-card__type { font-size: .68rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); margin-bottom: 10px; }
.price-card__name { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin: 0 0 14px; line-height: 1.1; }
.price-card__desc { font-size: .92rem; color: var(--ink-soft); margin: 0 0 26px; flex: 1; }
.price-card__price { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--ink); margin-top: auto; }
.price-card--featured { background: var(--ink); border-color: var(--ink); }
.price-card--featured .price-card__type { color: var(--gold-soft); }
.price-card--featured .price-card__name,
.price-card--featured .price-card__price { color: #f8f5f0; }
.price-card--featured .price-card__desc { color: rgba(248,245,240,.78); }
.price-card--featured:hover { border-color: var(--gold); }
.price-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin: 36px auto 0; max-width: 640px; }

@media (max-width: 980px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing { grid-template-columns: 1fr; }
}

/* ===== CTA banner ===== */
.cta-banner { background: var(--ink); color: #f8f5f0; text-align: center; }
.cta-banner blockquote {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 500;
  max-width: 880px; margin: 0 auto 40px; font-style: normal; line-height: 1.25;
}
.cta-banner blockquote span { color: var(--gold-soft); }
.cta-banner .btn--primary { background: #f8f5f0; color: var(--ink); }
.cta-banner .btn--primary:hover { background: var(--gold); color: #fff; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(248,245,240,.66); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.site-footer h4 { font-family: var(--sans); color: #f8f5f0; font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; margin: 0 0 18px; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-logo-text { font-family: var(--serif); display: inline-block; color: #f8f5f0; font-size: 1.7rem; font-weight: 500; margin-bottom: 16px; letter-spacing: .04em; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid rgba(248,245,240,.14); margin-top: 56px; padding-top: 28px; text-align: center; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: rgba(248,245,240,.45); }
.social { display: flex; gap: 14px; margin-top: 4px; }
.social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(248,245,240,.28); display: grid; place-items: center; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ===== Page header (subpages) ===== */
.page-head { background: var(--bg-soft); padding: 96px 0 84px; text-align: center; border-bottom: 1px solid var(--line); }
.page-head p { color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* ===== Gallery (project detail) ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery figure { margin: 0; border-radius: 0; overflow: hidden; cursor: zoom-in; aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.back-link {
  display: inline-block; margin-bottom: 32px; color: var(--ink-soft); font-family: var(--sans);
  font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .2em;
}
.back-link:hover { color: var(--gold); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(26,24,20,.96); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 0; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(248,245,240,.14); border: 0; color: #fff; cursor: pointer; border-radius: 50%; width: 52px; height: 52px; font-size: 1.6rem; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info p { color: var(--ink-soft); }
.contact-info .info-line { display: flex; gap: 16px; margin-bottom: 16px; align-items: flex-start; }
.contact-info .info-line strong { min-width: 120px; display: inline-block; color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; padding-top: 3px; }

/* Centered contact details (no form) */
.contact-info--center { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-info--center .info-line { justify-content: center; }
.contact-cta-msg { font-size: 1.15rem; color: var(--ink-soft); margin: 12px auto 40px; max-width: 560px; }
.contact-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin: 40px 0 4px; }
.contact-legal { margin-top: 40px; color: var(--ink-soft); font-size: .92rem; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 8px; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.form-field input, .form-field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 2px;
  font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
.form-note { font-size: .85rem; color: var(--ink-soft); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  :root { --header-h: 84px; }
  .cards, .features, .footer-grid, .contact-grid, .usp { grid-template-columns: 1fr; }
  .features { border: 0; gap: 1px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .usp { gap: 40px; }
  .brand img { height: 50px; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 32px 24px; display: none; }
  .nav.is-open { display: flex; align-items: stretch; }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav a:hover, .nav a.active { border-bottom-color: var(--line); color: var(--gold); }
  .nav-social { padding: 18px 0 4px; gap: 14px; }
  .nav-social a { padding: 0; border-bottom: 0; }
  .nav .btn { margin-top: 14px; text-align: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .steps, .gallery { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .container { padding: 0 22px; }
  .hero__cta, .contact-actions { flex-direction: column; }
  .hero__cta .btn, .contact-actions .btn { min-width: 0; width: 100%; }
}
