:root {
  --ink: #171817;
  --ink-soft: #282927;
  --paper: #f5f3ee;
  --paper-deep: #e9e5dc;
  --white: #fff;
  --bronze: #a97945;
  --bronze-light: #d5b184;
  --muted: #686963;
  --line: rgba(23, 24, 23, .14);
  --shadow: 0 24px 70px rgba(18, 19, 17, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { color: var(--bronze); font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-150%); background: var(--white); padding: 10px 14px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(20,21,20,.92); color: var(--white); backdrop-filter: blur(18px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; font-weight: 650; letter-spacing: .04em; }
.brand img { width: 62px; height: 44px; object-fit: contain; padding: 4px 6px; background: var(--paper); }
.brand small { display: block; color: #b8b9b4; font-size: .66rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .88rem; }
.nav-links a { color: #d7d8d4; transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--bronze-light); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--white); font-size: 1.6rem; }

.hero { min-height: 720px; color: var(--white); background: var(--ink); position: relative; isolation: isolate; display: grid; align-items: end; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(13,14,13,.94) 0%, rgba(13,14,13,.72) 43%, rgba(13,14,13,.15) 78%), url('hero-interior.png') center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; z-index: -1; background: linear-gradient(transparent, rgba(13,14,13,.56)); }
.hero-content { padding: 150px 0 100px; max-width: 720px; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(3.25rem, 8vw, 6.8rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2.25rem, 5vw, 4.2rem); letter-spacing: -.035em; }
h3 { font-size: 1.55rem; }
.hero p { max-width: 600px; margin: 26px 0 34px; color: #d3d4d0; font-size: clamp(1rem, 2vw, 1.18rem); }
.actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 24px; border: 1px solid transparent; background: var(--bronze); color: var(--white); font-weight: 650; font-size: .9rem; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #92663b; }
.button.outline { background: transparent; border-color: rgba(255,255,255,.45); }
.button.outline:hover { background: rgba(255,255,255,.08); }
.button.dark { background: var(--ink); }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 108px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-item { padding: 12px 30px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.trust-item span { color: var(--muted); font-size: .86rem; }

.section { padding: 110px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 52px; }
.section-head p { color: var(--muted); max-width: 520px; margin: 0; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 320px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { color: var(--bronze); font: 400 2.4rem/1 Georgia, serif; }
.service-card p { color: var(--muted); }
.text-link { font-weight: 700; font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; }

.process { background: var(--ink); color: var(--white); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.steps { border-top: 1px solid rgba(255,255,255,.15); }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.step span { color: var(--bronze-light); }
.step p { color: #b9bbb6; margin: 8px 0 0; }

.contact-band { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--bronze); color: var(--white); }
.contact-band > div { padding: 76px max(28px, 7vw); }
.contact-band .location { background: var(--ink-soft); }
.location-link { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.location-link svg { width: 54px; height: 54px; padding: 14px; border: 1px solid rgba(255,255,255,.3); }

.page-hero { padding: 130px 0 80px; background: var(--ink); color: var(--white); }
.page-hero p { max-width: 720px; color: #c6c7c2; font-size: 1.08rem; }
.page-content { padding: 70px 0 110px; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 54px; align-items: start; }
.form-card { padding: clamp(24px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .86rem; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid #c9c7c0; border-radius: 0; background: #fbfaf7; color: var(--ink); padding: 13px 14px; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(169,121,69,.35); border-color: var(--bronze); }
textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--muted); font-size: .86rem; }
.submit-status { margin: 16px 0 0; color: var(--muted); font-size: .9rem; }
.submit-status.error { color: #8b3b32; }
.button:disabled { cursor: wait; opacity: .72; transform: none; }
.sidebar-card { padding: 28px; border-top: 3px solid var(--bronze); background: var(--paper-deep); }
.sidebar-card ul { padding-left: 18px; color: var(--muted); }

.cut-list { grid-column: 1 / -1; overflow-x: auto; }
.cut-table { width: 100%; min-width: 740px; border-collapse: collapse; }
.cut-table th { padding: 10px 8px; text-align: left; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.cut-table td { padding: 7px 4px; }
.cut-table input, .cut-table select { min-width: 90px; }
.cut-table .kantiranje-opis { min-width: 190px; margin-top: 7px; }
.cut-table .kantiranje-opis[hidden] { display: none; }
.icon-button { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; color: #8b3b32; }
.add-row { margin-top: 14px; border: 0; background: transparent; color: var(--bronze); font-weight: 750; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-card { padding: 34px; background: var(--white); border: 1px solid var(--line); }
.contact-card p { color: var(--muted); }
.contact-list { display: grid; gap: 12px; margin-top: 22px; }
.contact-list a { font-weight: 650; }
.contact-list a:hover { color: var(--bronze); }
.gallery-placeholder { min-height: 360px; display: grid; place-items: center; padding: 36px; text-align: center; border: 1px dashed #aaa79f; color: var(--muted); }

.site-footer { padding: 62px 0 25px; background: #111210; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-grid p, .footer-grid a { color: #aeb0aa; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #858781; font-size: .8rem; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 35; display: flex; align-items: center; gap: 9px; padding: 13px 17px; border-radius: 50px; background: #1fa855; color: white; font-weight: 750; box-shadow: 0 15px 38px rgba(0,0,0,.24); }
.floating-whatsapp svg { width: 22px; height: 22px; }

@media (max-width: 850px) {
  .shell { width: min(100% - 28px, 1180px); }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 78px; padding: 24px 20px 30px; background: #151614; flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hero { min-height: 650px; }
  .hero::before { background: linear-gradient(90deg, rgba(13,14,13,.94), rgba(13,14,13,.48)), url('hero-interior.png') 60% center/cover no-repeat; }
  .services, .process-grid, .contact-band, .form-layout, .footer-grid { grid-template-columns: 1fr; }
  .process-grid { gap: 50px; }
  .section { padding: 78px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .form-layout { gap: 28px; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; padding: 18px 0; }
  .trust-item, .trust-item:first-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .form-grid, .contact-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 54px; height: 54px; padding: 0; justify-content: center; }
}
