:root {
  --bg: #05080b;
  --bg-2: #090e13;
  --surface: #0d1319;
  --surface-2: #111922;
  --surface-3: #151f29;
  --text: #f7f8fa;
  --muted: #a9b0b9;
  --muted-2: #747e89;
  --line: rgba(255,255,255,.09);
  --line-gold: rgba(220,171,82,.34);
  --gold: #dcab52;
  --gold-2: #f0c879;
  --gold-dark: #9a6f2d;
  --success: #8ed1a7;
  --danger: #ff8b8b;
  --max: 1200px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 26px 80px rgba(0,0,0,.36);
  --shadow-soft: 0 16px 42px rgba(0,0,0,.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(220,171,82,.08), transparent 24rem),
    linear-gradient(180deg, #05080b 0%, #081018 46%, #05080b 100%);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(220,171,82,.34); color: #fff; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; }
.section-compact { padding: 74px 0; }
.section-dark { background: rgba(2,5,8,.48); border-block: 1px solid rgba(255,255,255,.05); }
.section-glow::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 50%;
  width: 40rem;
  height: 24rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(220,171,82,.08), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.section-head { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2, .page-hero h1, .hero h1 {
  margin: 0;
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
.section-head p { max-width: 680px; margin: 18px auto 0; color: var(--muted); font-size: 1.04rem; }
.section-head.left p { margin-left: 0; }
.gold { color: var(--gold-2); }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,8,11,.78);
  backdrop-filter: blur(18px) saturate(135%);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; flex: 0 0 auto; }
.brand strong { color: var(--gold-2); font-size: 1.08rem; letter-spacing: .09em; }
.brand span { margin-top: 7px; color: #afb4bb; font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a:not(.btn) { position: relative; padding: 30px 0 27px; color: #c9ced4; font-size: .88rem; font-weight: 650; }
.desktop-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--gold); transition: right .22s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-cta { min-height: 42px !important; padding-inline: 17px !important; font-size: .82rem !important; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.03); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; transition: .25s ease; }
.mobile-nav { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: #fff;
  font-weight: 760;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.btn-primary { color: #171006; border-color: var(--gold); background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 10px 28px rgba(220,171,82,.18); }
.btn-primary:hover { border-color: var(--gold-2); background: linear-gradient(135deg, #f6d58f, #dfaa4c); box-shadow: 0 14px 34px rgba(220,171,82,.27); }
.btn-arrow::after { content: "→"; font-size: 1.08em; }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { height: 100%; object-fit: cover; object-position: 54% center; filter: saturate(.83) contrast(1.08) brightness(.66); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,7,10,.99) 0%, rgba(4,7,10,.92) 34%, rgba(4,7,10,.42) 67%, rgba(4,7,10,.1) 100%), linear-gradient(0deg, rgba(4,7,10,.9) 0%, transparent 42%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 650px) 1fr; gap: 40px; align-items: center; padding: 104px 0 76px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 8px 12px; margin-bottom: 22px; border: 1px solid var(--line-gold); border-radius: 999px; background: rgba(220,171,82,.09); color: var(--gold-2); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 15px var(--gold-2); }
.hero h1 { max-width: 680px; font-size: clamp(3rem, 7vw, 5.75rem); }
.hero .lead { max-width: 650px; margin: 24px 0 0; color: #c2c8ce; font-size: clamp(1rem, 1.6vw, 1.17rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.trust-panel { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; max-width: 650px; margin-top: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: rgba(8,13,18,.7); backdrop-filter: blur(12px); box-shadow: var(--shadow-soft); }
.trust-item { min-height: 92px; padding: 19px 18px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)); }
.trust-item strong { display: block; color: #fff; font-size: .9rem; }
.trust-item span { display: block; margin-top: 4px; color: var(--muted); font-size: .76rem; }
.trust-item .mini-icon { width: 20px; height: 20px; margin-bottom: 9px; color: var(--gold); }
.hero-side-note { align-self: end; justify-self: end; display: flex; align-items: center; gap: 12px; padding-bottom: 7px; color: rgba(255,255,255,.72); font-size: .75rem; writing-mode: vertical-rl; letter-spacing: .12em; text-transform: uppercase; }
.hero-side-note::before { content: ""; width: 1px; height: 60px; background: linear-gradient(var(--gold), transparent); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.service-card { position: relative; min-height: 420px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); isolation: isolate; transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(220,171,82,.34); }
.service-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: brightness(.63) saturate(.84); transition: transform .45s ease, filter .35s ease; }
.service-card:hover img { transform: scale(1.045); filter: brightness(.72) saturate(.94); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 10%, rgba(5,8,11,.17) 38%, rgba(5,8,11,.98) 83%); }
.service-content { position: absolute; inset: auto 0 0; z-index: 2; padding: 25px; }
.icon-box { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 17px; border: 1px solid var(--line-gold); border-radius: 12px; background: rgba(220,171,82,.1); color: var(--gold-2); }
.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; font-size: 1.14rem; }
.service-card p { margin: 9px 0 0; color: #b8bec5; font-size: .86rem; line-height: 1.55; }
.service-card .card-link { display: inline-flex; gap: 8px; margin-top: 17px; color: var(--gold-2); font-size: .8rem; font-weight: 750; }

.showcase-grid { display: grid; grid-template-columns: 1.2fr .85fr .85fr; grid-template-rows: 235px 235px; gap: 14px; }
.showcase-item { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.showcase-item:first-child { grid-row: 1 / 3; }
.showcase-item img { height: 100%; object-fit: cover; filter: brightness(.76) saturate(.82); transition: transform .45s ease, filter .3s ease; }
.showcase-item:hover img { transform: scale(1.045); filter: brightness(.88) saturate(.95); }
.showcase-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(4,7,10,.92)); }
.showcase-caption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; }
.showcase-caption strong { display: block; font-size: 1rem; }
.showcase-caption span { color: #bac1c8; font-size: .77rem; }
.gallery-note { margin: 20px 0 0; color: var(--muted-2); font-size: .78rem; text-align: center; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { padding: 28px 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.008)); text-align: center; transition: border-color .22s ease, transform .22s ease; }
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(220,171,82,.3); }
.benefit-card .icon-box { margin-inline: auto; }
.benefit-card h3 { margin: 0; font-size: 1rem; color: var(--gold-2); }
.benefit-card p { margin: 10px 0 0; color: var(--muted); font-size: .83rem; }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 68px; margin-top: 10px; }
.process-step { position: relative; display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 18px; min-height: 118px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); }
.process-step:not(:last-child)::after { content: ""; position: absolute; left: calc(100% + 13px); top: 50%; width: 42px; border-top: 1px dashed rgba(220,171,82,.55); }
.step-number { display: grid; place-items: center; width: 70px; height: 70px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-2); font-weight: 800; box-shadow: inset 0 0 0 8px rgba(220,171,82,.05); }
.process-step h3 { margin: 0; color: var(--gold-2); font-size: 1rem; }
.process-step p { margin: 6px 0 0; color: var(--muted); font-size: .8rem; }

.about-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 52px; align-items: center; }
.about-visual { position: relative; min-height: 550px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.about-visual img { height: 100%; object-fit: cover; filter: brightness(.72) saturate(.84); }
.about-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,8,11,.8), transparent 58%); }
.about-stamp { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 23px; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(5,8,11,.74); backdrop-filter: blur(12px); }
.about-stamp strong { display: block; color: var(--gold-2); font-size: 1.05rem; }
.about-stamp span { color: var(--muted); font-size: .84rem; }
.about-copy h2 { margin: 0 0 19px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.06; letter-spacing: -.04em; }
.about-copy > p { color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #d3d7dc; }
.check-list li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 23px; width: 23px; height: 23px; margin-top: 1px; border-radius: 50%; background: rgba(220,171,82,.12); color: var(--gold-2); font-size: .72rem; font-weight: 900; }

.contact-panel { display: grid; grid-template-columns: .72fr 1.05fr .78fr; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #080d12; box-shadow: var(--shadow); }
.contact-info, .contact-form { padding: 42px 36px; }
.contact-info { background: linear-gradient(150deg, rgba(220,171,82,.07), rgba(255,255,255,.012)); }
.contact-info h2 { margin: 0; font-size: clamp(1.9rem, 3vw, 2.8rem); letter-spacing: -.04em; }
.contact-info > p { color: var(--muted); }
.contact-list { display: grid; gap: 11px; margin-top: 26px; }
.contact-card { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(0,0,0,.2); }
.contact-card .icon-box { width: 42px; height: 42px; margin: 0; }
.contact-card small { display: block; color: var(--muted-2); font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.contact-card strong, .contact-card a { display: block; margin-top: 3px; font-size: .87rem; overflow-wrap: anywhere; }
.contact-form { border-left: 1px solid var(--line); }
.contact-form h3 { margin: 0 0 20px; font-size: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #cdd2d8; font-size: .75rem; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  outline: none;
  background: #0b1218;
  color: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(220,171,82,.1); }
.field input::placeholder, .field textarea::placeholder { color: #69737d; }
.form-note { margin: 12px 0 0; color: var(--muted-2); font-size: .72rem; }
.form-honeypot { position: absolute !important; left: -9999px !important; }
.contact-photo { min-height: 100%; }
.contact-photo img { height: 100%; object-fit: cover; filter: brightness(.68) saturate(.84); }

.page-hero { position: relative; padding: 112px 0 76px; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, rgba(220,171,82,.14), transparent 30rem), linear-gradient(150deg, #080d12, #04070a); }
.page-hero::after { content: ""; position: absolute; right: -10%; top: -70%; width: 50%; height: 180%; border: 1px solid rgba(220,171,82,.08); border-radius: 50%; transform: rotate(16deg); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 830px; font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero p { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 24px; color: var(--muted-2); font-size: .78rem; }
.breadcrumbs a { color: var(--gold-2); }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.detail-card { display: grid; grid-template-columns: 190px 1fr; min-height: 310px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.detail-card img { height: 100%; object-fit: cover; filter: brightness(.75) saturate(.86); }
.detail-card-content { padding: 28px; }
.detail-card h2 { margin: 0; font-size: 1.35rem; }
.detail-card p { color: var(--muted); font-size: .89rem; }
.detail-card ul { margin: 18px 0 0; padding-left: 19px; color: #d1d5da; font-size: .84rem; }
.detail-card li + li { margin-top: 8px; }

.quote-box { margin-top: 28px; padding: 34px; border: 1px solid var(--line-gold); border-radius: 20px; background: linear-gradient(135deg, rgba(220,171,82,.1), rgba(255,255,255,.015)); }
.quote-box h2 { margin: 0; font-size: 1.55rem; }
.quote-box p { color: var(--muted); }

.site-footer { padding: 66px 0 28px; border-top: 1px solid var(--line); background: #04070a; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .9fr 1fr; gap: 48px; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: var(--muted); font-size: .84rem; }
.footer-col h3 { margin: 0 0 17px; font-size: .8rem; color: #fff; text-transform: uppercase; letter-spacing: .09em; }
.footer-col ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .82rem; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .72rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .service-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 390px; }
  .contact-panel { grid-template-columns: .85fr 1.15fr; }
  .contact-photo { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
  .detail-card { grid-template-columns: 150px 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 82px 0 auto; display: grid; gap: 4px; max-height: 0; overflow: hidden; padding: 0 20px; background: rgba(5,8,11,.98); border-bottom: 1px solid transparent; transition: max-height .28s ease, padding .28s ease, border-color .28s ease; }
  .mobile-nav.open { max-height: 520px; padding-block: 18px 24px; border-color: var(--line); }
  .mobile-nav a { padding: 12px 4px; color: #d7dbe0; font-weight: 700; }
  .mobile-nav .btn { margin-top: 8px; }
  .hero { min-height: 690px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side-note { display: none; }
  .trust-panel { max-width: none; }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 290px 220px 220px; }
  .showcase-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .about-split { grid-template-columns: 1fr; }
  .about-visual { min-height: 440px; order: 2; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-form { border-left: 0; border-top: 1px solid var(--line); }
  .process { grid-template-columns: 1fr; gap: 15px; }
  .process-step:not(:last-child)::after { display: none; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 72px; }
  .brand strong { font-size: .95rem; }
  .brand span { font-size: .56rem; }
  .mobile-nav { top: 72px; }
  .hero { min-height: auto; }
  .hero-media img { object-position: 35% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(4,7,10,.97), rgba(4,7,10,.72)), linear-gradient(0deg, rgba(4,7,10,.95), transparent); }
  .hero-grid { padding: 86px 0 58px; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero .lead { font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-item { min-height: 78px; display: grid; grid-template-columns: 28px 1fr; column-gap: 10px; align-items: center; }
  .trust-item .mini-icon { grid-row: 1 / 3; margin: 0; }
  .trust-item span { margin: 0; }
  .section-head { margin-bottom: 31px; }
  .service-grid, .benefit-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 400px; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 250px); }
  .showcase-item:first-child { grid-column: auto; }
  .about-visual { min-height: 390px; }
  .contact-info, .contact-form { padding: 31px 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .page-hero { padding: 88px 0 60px; }
  .detail-card { grid-template-columns: 1fr; }
  .detail-card img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   VISION ACOUSTIC 2026 — LIGHT CREAM THEME
   Ozbiljnija tipografija, smanjeni naslovi i krem/bež paleta.
   ========================================================= */
:root {
  --bg: #efe4d5;
  --bg-2: #e4d5c3;
  --surface: #f6ede1;
  --surface-2: #eadfD1;
  --surface-3: #dfceb9;
  --text: #26221e;
  --muted: #6c6258;
  --muted-2: #8b7e71;
  --line: rgba(66, 50, 34, .14);
  --line-gold: rgba(168, 116, 43, .33);
  --gold: #a87530;
  --gold-2: #b88438;
  --gold-dark: #76501f;
  --shadow: 0 24px 60px rgba(70, 49, 28, .14);
  --shadow-soft: 0 14px 34px rgba(70, 49, 28, .10);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 132, 56, .10), transparent 28rem),
    linear-gradient(180deg, #f3eadf 0%, #eadfD1 48%, #f1e7da 100%);
}
::selection { background: rgba(168, 117, 48, .24); color: #1f1b17; }
.container { width: min(calc(100% - 44px), var(--max)); }
.section { padding: 86px 0; }
.section-compact { padding: 62px 0; }
.section-dark {
  background: #e9ddce;
  border-block: 1px solid rgba(83, 61, 38, .10);
}
.section-glow::before {
  background: radial-gradient(circle, rgba(168, 117, 48, .10), transparent 68%);
}
.eyebrow { color: var(--gold-dark); font-size: .7rem; letter-spacing: .15em; }
.section-head { max-width: 720px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(1.55rem, 2.25vw, 2.02rem); letter-spacing: -.025em; line-height: 1.14; }
.section-head p { margin-top: 15px; color: var(--muted); font-size: .98rem; }
.gold { color: var(--gold-dark); }

.site-header {
  background: rgba(244, 236, 225, .94);
  border-bottom: 1px solid rgba(68, 52, 37, .12);
  box-shadow: 0 7px 24px rgba(65, 47, 28, .055);
}
.nav-wrap { min-height: 74px; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 210px; height: auto; }
.desktop-nav { gap: 27px; }
.desktop-nav a:not(.btn) { padding: 29px 0 26px; color: #51483f; font-size: .86rem; font-weight: 680; }
.desktop-nav a:not(.btn)::after { bottom: 18px; background: var(--gold); }
.desktop-nav a:hover, .desktop-nav a.active { color: #1e1a17; }
.menu-toggle { border-color: var(--line); background: rgba(255,255,255,.48); }
.menu-toggle span { background: #302a25; }

.btn {
  min-height: 49px;
  border-color: rgba(70, 51, 32, .18);
  background: rgba(255,255,255,.45);
  color: #302820;
  font-weight: 720;
  box-shadow: none;
}
.btn:hover { border-color: rgba(70, 51, 32, .30); background: rgba(255,255,255,.78); }
.btn-primary {
  color: #fffaf3;
  border-color: #9f6d2a;
  background: linear-gradient(135deg, #b8853f, #946326);
  box-shadow: 0 9px 22px rgba(139, 90, 30, .18);
}
.btn-primary:hover {
  border-color: #80531e;
  background: linear-gradient(135deg, #c39450, #9b692a);
  box-shadow: 0 12px 28px rgba(139, 90, 30, .22);
}

.hero {
  min-height: 590px;
  border-bottom: 1px solid rgba(75, 55, 35, .12);
  background: #e9dccb;
}
.hero-media img {
  object-position: 64% center;
  filter: saturate(.72) contrast(1.02) brightness(.91);
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(246,240,232,.99) 0%, rgba(246,240,232,.96) 35%, rgba(246,240,232,.75) 55%, rgba(246,240,232,.18) 77%, rgba(246,240,232,.05) 100%),
    linear-gradient(0deg, rgba(235,224,211,.78) 0%, transparent 38%);
}
.hero-grid { grid-template-columns: minmax(0, 610px) 1fr; padding: 72px 0 58px; }
.hero-badge {
  margin-bottom: 18px;
  border-color: rgba(149, 99, 35, .28);
  background: rgba(255,255,255,.42);
  color: #76501f;
}
.hero h1 {
  max-width: 610px;
  color: #24201c;
  font-size: clamp(2.05rem, 3.35vw, 3.05rem);
  font-weight: 745;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.hero .lead { max-width: 590px; margin-top: 20px; color: #5f554c; font-size: clamp(.98rem, 1.35vw, 1.08rem); }
.hero-actions { margin-top: 27px; }
.trust-panel {
  max-width: 610px;
  margin-top: 34px;
  border-color: rgba(68, 52, 37, .13);
  background: rgba(252,248,242,.82);
  box-shadow: 0 14px 32px rgba(70, 49, 28, .10);
}
.trust-item { min-height: 84px; padding: 16px; background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(244,235,224,.58)); }
.trust-item strong { color: #302920; font-size: .86rem; }
.trust-item span { color: #71665b; font-size: .73rem; }
.hero-side-note { color: rgba(50,42,34,.58); }

.service-card { min-height: 390px; border-color: rgba(61,48,34,.15); box-shadow: 0 15px 34px rgba(50,35,22,.13); }
.service-card h3 { color: #fff; }
.service-card p { color: #d7d3ce; }
.service-card .card-link { color: #efc879; }
.icon-box { border-color: rgba(168,116,43,.31); background: rgba(184,132,56,.10); color: var(--gold-dark); }
.service-card .icon-box { border-color: rgba(227,182,98,.46); background: rgba(179,124,43,.17); color: #efc879; }

.showcase-item { border-color: rgba(61,48,34,.14); box-shadow: 0 10px 25px rgba(55,39,24,.08); }
.showcase-caption strong { color: #fff; }
.showcase-caption span { color: #ded9d3; }
.gallery-note { color: #84786c; }

.benefit-card {
  border-color: rgba(67, 51, 34, .13);
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(238,226,211,.52));
  box-shadow: 0 10px 25px rgba(68,48,28,.055);
}
.benefit-card h3 { color: #744d1c; }
.benefit-card p { color: #6d6258; }

.process { gap: 54px; }
.process-step {
  min-height: 108px;
  border-color: rgba(67, 51, 34, .14);
  background: rgba(255,255,255,.48);
  box-shadow: 0 8px 22px rgba(67,46,26,.05);
}
.process-step h3 { color: #704a1d; }
.process-step p { color: #6c6258; }
.step-number { border-color: rgba(168,116,43,.30); background: rgba(184,132,56,.09); color: #7b531f; }

.about-copy h2 { font-size: clamp(1.62rem, 2.35vw, 2.12rem); letter-spacing: -.03em; line-height: 1.12; }
.about-copy > p { color: #6b6056; }
.check-list li { color: #51483f; }
.about-stamp { background: rgba(37,31,26,.78); border-color: rgba(255,255,255,.18); }
.about-stamp strong { color: #e2b969; }
.about-stamp span { color: #d0c9c0; }

.contact-panel {
  border-color: rgba(67, 51, 34, .14);
  background: #f5ecdf;
  box-shadow: 0 22px 52px rgba(68,48,28,.12);
}
.contact-info { background: linear-gradient(150deg, rgba(184,132,56,.11), rgba(242,232,220,.36)); }
.contact-info h2 { color: #2c2722; font-size: clamp(1.45rem, 2vw, 1.88rem); letter-spacing: -.025em; }
.contact-info > p { color: #6d6258; }
.contact-card { border-color: rgba(67,51,34,.13); background: rgba(255,255,255,.55); }
.contact-card small { color: #8a7d70; }
.contact-card strong, .contact-card a { color: #3b332c; }
.contact-form { border-left-color: rgba(67,51,34,.13); }
.contact-form h3 { color: #2d2823; }
.field label { color: #5a5047; }
.field input, .field textarea, .field select {
  border-color: rgba(67,51,34,.16);
  background: #faf4eb;
  color: #2a2521;
}
.field input::placeholder, .field textarea::placeholder { color: #a09488; }
.form-note { color: #8a7d71; }
.contact-photo img { filter: brightness(.80) saturate(.72); }

.page-hero {
  padding: 88px 0 62px;
  border-bottom-color: rgba(67,51,34,.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(184,132,56,.13), transparent 28rem),
    linear-gradient(145deg, #f7f1e8, #e9ddce);
}
.page-hero::after { border-color: rgba(145,97,35,.10); }
.page-hero h1 {
  max-width: 760px;
  color: #29241f;
  font-size: clamp(1.82rem, 2.9vw, 2.58rem);
  font-weight: 745;
  letter-spacing: -.03em;
  line-height: 1.12;
}
.page-hero p { margin-top: 18px; color: #6a6057; font-size: 1rem; }
.breadcrumbs { margin-bottom: 20px; color: #8c7e70; }
.breadcrumbs a { color: #79511f; }

.detail-card {
  border-color: rgba(67,51,34,.14);
  background: #f6eee3;
  box-shadow: 0 12px 30px rgba(68,48,28,.065);
}
.detail-card h2 { color: #302a24; font-size: 1.24rem; }
.detail-card p { color: #6c6258; }
.detail-card ul { color: #51483f; }
.quote-box {
  border-color: rgba(168,116,43,.30);
  background: linear-gradient(135deg, rgba(184,132,56,.12), rgba(255,255,255,.48));
}
.quote-box h2 { color: #2d2823; font-size: 1.42rem; }
.quote-box p { color: #6b6056; }

.site-footer {
  border-top-color: rgba(255,255,255,.07);
  background: #27231f;
  color: #e9e1d7;
}
.site-footer .brand img { width: 205px; }
.footer-brand p { color: #bfb6ac; }
.footer-col h3 { color: #f2eadf; }
.footer-col ul { color: #bfb6ac; }
.footer-col a:hover { color: #e0b66b; }
.footer-bottom { border-top-color: rgba(255,255,255,.09); color: #948b82; }

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .mobile-nav {
    background: rgba(248,243,236,.985);
    border-bottom-color: transparent;
    box-shadow: 0 14px 30px rgba(65,47,28,.10);
  }
  .mobile-nav a { color: #40372f; }
  .hero { min-height: 560px; }
  .hero-media img { object-position: 66% center; }
  .hero-media::after {
    background: linear-gradient(90deg, rgba(246,240,232,.99), rgba(246,240,232,.90) 58%, rgba(246,240,232,.38)), linear-gradient(0deg, rgba(235,224,211,.80), transparent 48%);
  }
  .contact-form { border-top-color: rgba(67,51,34,.13); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 176px; }
  .mobile-nav { top: 68px; }
  .hero-media img { object-position: 62% center; }
  .hero-media::after {
    background: linear-gradient(90deg, rgba(246,240,232,.99), rgba(246,240,232,.92) 66%, rgba(246,240,232,.55)), linear-gradient(0deg, rgba(235,224,211,.86), transparent 50%);
  }
  .hero-grid { padding: 64px 0 44px; }
  .hero h1 { font-size: clamp(1.85rem, 8.2vw, 2.28rem); line-height: 1.1; }
  .hero .lead { font-size: .95rem; }
  .section-head h2 { font-size: clamp(1.45rem, 6.2vw, 1.82rem); }
  .page-hero { padding: 72px 0 50px; }
  .page-hero h1 { font-size: clamp(1.68rem, 7.2vw, 2.14rem); }
  .about-copy h2 { font-size: clamp(1.52rem, 6.5vw, 1.92rem); }
  .service-card { min-height: 375px; }
}


/* Final cream/beige refinements */
.service-card, .showcase-item { background-color: #e9dccb; }
.benefit-card { background: linear-gradient(145deg, rgba(247,239,228,.94), rgba(231,217,199,.72)); }
.process-step { background: rgba(247,239,228,.78); }
.contact-card { background: rgba(248,240,229,.86); }
.mobile-nav { background: rgba(244,236,225,.99); }
.gallery-note { font-style: italic; }
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-compact { padding: 52px 0; }
}

/* =========================================================
   MOBILE FIX 2026-08-04
   Final responsive overrides + stable cream/beige theme.
   This block is intentionally last so older mobile rules
   cannot override the approved desktop/light design.
   ========================================================= */
html, body { max-width: 100%; overflow-x: clip; }

@media (max-width: 860px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 68px 0; }
  .section-compact { padding: 54px 0; }

  .nav-wrap { min-height: 70px; }
  .brand img { width: 182px; max-width: 48vw; }
  .mobile-nav { top: 70px; }
  .mobile-nav.open { max-height: calc(100dvh - 70px); overflow-y: auto; }

  .hero {
    min-height: auto;
    background: #e9dccb;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 66px 0 48px;
  }
  .hero-content { max-width: 590px; }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(2rem, 6.4vw, 2.55rem);
    line-height: 1.1;
    letter-spacing: -.028em;
  }
  .hero .lead { max-width: 540px; font-size: .98rem; line-height: 1.58; }
  .hero-media img { object-position: 70% center; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(246,240,232,.995) 0%, rgba(246,240,232,.96) 48%, rgba(246,240,232,.62) 76%, rgba(246,240,232,.23) 100%),
      linear-gradient(0deg, rgba(235,224,211,.84) 0%, transparent 50%);
  }
  .trust-panel { max-width: 590px; }

  .service-grid, .benefit-grid { gap: 14px; }
  .service-card { min-height: 360px; }
  .showcase-grid { gap: 12px; }
  .about-split { gap: 34px; }
  .about-visual { min-height: 380px; }
  .contact-panel { border-radius: 20px; }
  .contact-info, .contact-form { padding: 32px 26px; }

  .page-hero { padding: 72px 0 52px; }
  .page-hero h1 { font-size: clamp(1.75rem, 5.5vw, 2.2rem); }
  .page-hero p { font-size: .96rem; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 66px; }
  body { min-width: 0; }
  .container { width: calc(100% - 28px); }
  .section { padding: 56px 0; }
  .section-compact { padding: 46px 0; }

  .nav-wrap { min-height: 66px; gap: 12px; }
  .brand img { width: 164px; max-width: 65vw; }
  .menu-toggle { width: 42px; height: 42px; flex: 0 0 42px; }
  .mobile-nav { top: 66px; padding-inline: 14px; }
  .mobile-nav.open { max-height: calc(100dvh - 66px); padding-block: 12px 18px; }
  .mobile-nav a { padding: 11px 6px; font-size: .92rem; }

  .hero { min-height: auto; }
  .hero-grid { padding: 52px 0 40px; }
  .hero-media img { object-position: 67% center; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(246,240,232,.998) 0%, rgba(246,240,232,.97) 60%, rgba(246,240,232,.73) 83%, rgba(246,240,232,.42) 100%),
      linear-gradient(0deg, rgba(235,224,211,.88) 0%, transparent 54%);
  }
  .hero-badge {
    margin-bottom: 15px;
    padding: 7px 10px;
    font-size: .62rem;
    letter-spacing: .085em;
  }
  .hero h1 {
    max-width: 92%;
    font-size: clamp(1.72rem, 8vw, 2rem);
    line-height: 1.12;
    letter-spacing: -.025em;
  }
  .hero .lead {
    max-width: 92%;
    margin-top: 16px;
    font-size: .91rem;
    line-height: 1.55;
  }
  .hero-actions { gap: 10px; margin-top: 23px; }
  .hero-actions .btn { width: 100%; min-height: 47px; }
  .trust-panel {
    grid-template-columns: 1fr;
    margin-top: 26px;
    border-radius: 13px;
  }
  .trust-item {
    min-height: 70px;
    grid-template-columns: 25px 1fr;
    padding: 13px 15px;
  }
  .trust-item strong { font-size: .84rem; }
  .trust-item span { font-size: .71rem; }

  .section-head { margin-bottom: 26px; }
  .section-head h2 {
    font-size: clamp(1.38rem, 6.4vw, 1.68rem);
    line-height: 1.17;
    letter-spacing: -.018em;
  }
  .section-head p { margin-top: 12px; font-size: .91rem; line-height: 1.55; }
  .eyebrow { margin-bottom: 10px; font-size: .63rem; }

  .service-grid, .benefit-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; border-radius: 17px; }
  .service-content { padding: 21px; }
  .service-card h3 { font-size: 1.04rem; }
  .service-card p { font-size: .82rem; }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 215px);
  }
  .showcase-item:first-child { grid-column: auto; grid-row: auto; }
  .showcase-caption { left: 16px; right: 16px; bottom: 14px; }

  .benefit-card { padding: 23px 19px; }
  .process { gap: 12px; }
  .process-step {
    grid-template-columns: 58px 1fr;
    min-height: 96px;
    gap: 13px;
    padding: 16px;
  }
  .step-number { width: 54px; height: 54px; }

  .about-split { gap: 27px; }
  .about-visual { min-height: 300px; border-radius: 18px; }
  .about-stamp { left: 14px; right: 14px; bottom: 14px; padding: 16px; }
  .about-stamp strong { font-size: .94rem; }
  .about-stamp span { font-size: .77rem; }
  .about-copy h2 {
    font-size: clamp(1.42rem, 6.6vw, 1.75rem);
    line-height: 1.16;
    letter-spacing: -.02em;
  }
  .about-copy > p, .check-list li { font-size: .91rem; }

  .contact-panel { border-radius: 17px; }
  .contact-info, .contact-form { padding: 26px 18px; }
  .contact-info h2 { font-size: 1.45rem; line-height: 1.18; }
  .contact-card { grid-template-columns: 38px minmax(0, 1fr); padding: 12px; }
  .contact-card .icon-box { width: 38px; height: 38px; }
  .contact-card strong, .contact-card a { font-size: .81rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form .btn { width: 100%; }

  .page-hero { padding: 60px 0 43px; }
  .breadcrumbs { margin-bottom: 16px; }
  .page-hero h1 {
    max-width: 95%;
    font-size: clamp(1.55rem, 7vw, 1.88rem);
    line-height: 1.17;
  }
  .page-hero p { margin-top: 14px; font-size: .91rem; line-height: 1.55; }
  .detail-card { grid-template-columns: 1fr; border-radius: 17px; }
  .detail-card img { height: 205px; }
  .detail-card-content { padding: 22px 19px; }
  .detail-card h2 { font-size: 1.14rem; }
  .quote-box { padding: 24px 20px; }
  .quote-box h2 { font-size: 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .site-footer { padding-top: 48px; }
  .site-footer .brand img { width: 178px; }
  .footer-bottom { margin-top: 34px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  .brand img { width: 150px; }
  .hero h1 { font-size: 1.66rem; }
  .hero .lead { font-size: .88rem; }
  .hero-badge { max-width: 92%; }
  .contact-info, .contact-form { padding-inline: 15px; }
}
