:root {
  --ink: #252a2d;
  --black: #111314;
  --muted: #67625b;
  --paper: #fffdf8;
  --cream: #faf7f1;
  --sand: #efe5d8;
  --sand-2: #d8c9b4;
  --accent: #d89a2b;
  --accent-dark: #b97816;
  --line: rgba(37, 42, 45, .12);
  --line-soft: rgba(37, 42, 45, .075);
  --shadow: 0 24px 70px rgba(37, 42, 45, .11);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 2%, rgba(216,154,43,.08), transparent 34%),
    linear-gradient(180deg, #fffdf8, #faf7f1 46%, #fffdf8);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.screen-reader-text, .skip-link {
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; width:auto; height:auto; padding:10px 14px; background:white; }
.inner { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 44px)); }
section { padding: clamp(62px, 8vw, 116px) 0; }
.site-main { overflow: hidden; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .94;
}
h1 { font-size: clamp(56px, 8.5vw, 124px); margin: 0 0 26px; }
h2 { font-size: clamp(38px, 5.3vw, 76px); margin: 0 0 22px; }
h3 { font-size: 20px; letter-spacing: -.045em; line-height: 1.14; margin: 0 0 8px; font-weight: 700; }
.lead { font-size: clamp(18px, 1.6vw, 23px); color: #48443e; max-width: 700px; }
.btn-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin: 32px 0 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  min-height: 54px; padding: 0 30px;
  border-radius: 999px; border: 1px solid transparent;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 850;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn span { font-size: 22px; line-height: 0; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #e7b148, var(--accent)); color: var(--black); box-shadow: 0 15px 30px rgba(185, 120, 22, .24); }
.btn-outline { background: rgba(255,255,255,.78); border-color: rgba(17, 19, 20, .8); color: var(--black); }
.btn:hover { transform: translateY(-2px); }
.text-link {
  display:inline-flex; align-items:center; gap:10px; margin-top:18px;
  font-size:12px; text-transform:uppercase; letter-spacing:.14em; font-weight:850; color:var(--ink);
}
.text-link:after { content:""; width:44px; height:1px; background:var(--accent); transition:.22s; }
.text-link:hover:after { width:64px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,248,.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.is-scrolled { box-shadow: 0 14px 36px rgba(37,42,45,.055); }
.header-inner { width: min(1440px, calc(100% - 54px)); margin: 0 auto; height: 96px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.custom-logo-link { display: inline-flex; align-items: center; position: relative; }
.custom-logo { width: 420px; max-height: 84px; object-fit: contain; }
.custom-logo-link:after { display:none; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a:after { content:""; position:absolute; left:0; right:100%; bottom:3px; height:1px; background: var(--accent); transition:.22s; }
.desktop-nav a:hover:after { right: 0; }
.desktop-nav .nav-cta, .desktop-nav a[href*="#kontakt"]:last-child { padding: 10px 16px; border: 1px solid rgba(185, 120, 22, .34); border-radius: 999px; background: rgba(216,154,43,.1); }
.desktop-nav .nav-cta:after, .desktop-nav a[href*="#kontakt"]:last-child:after { display:none; }
.menu-button { display:none; margin-left:auto; width:46px; height:46px; border:0; background:transparent; padding:8px; cursor:pointer; }
.menu-button span { display:block; height:3px; margin:7px 0; background:var(--ink); border-radius:999px; }
.mobile-nav { display:none; }

/* Hero */
.hero-section { padding-top: clamp(48px, 7vw, 92px); }
.hero-grid { display:grid; grid-template-columns: .92fr 1.08fr; align-items:center; gap: clamp(36px, 7vw, 96px); }
.microline {
  margin: 0 0 26px;
  max-width: 760px;
  color: #1f2224;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  font-weight: 650;
}
.microline::before, .microline::after { content:""; display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--accent); margin:0 10px 2px 0; }
.microline::after { margin:0 0 2px 10px; }
.location-pill { display:inline-flex; align-items:center; gap:10px; margin-top:24px; color:#5e574e; font-size:16px; font-weight:600; line-height:1.5; }
.location-pill:before, .location-pill:after { content:""; width:8px; height:8px; border-radius:50%; background:var(--accent); flex:0 0 8px; }
.location-pill:after { margin-left:2px; }
.hero-visual { position:relative; min-height: 660px; }
.hero-photo {
  position:absolute; inset: 0 0 0 4%; border-radius: 62px 62px 12px 62px;
  overflow:hidden; box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,255,255,.08) 48%, rgba(255,255,255,0)),
    linear-gradient(90deg, #fbf8f2 0 28%, #d7c5ad 28% 28.7%, #f4ecdf 28.7% 60%, #b6a692 60% 60.5%, #f8f1e7 60.5% 100%);
}
.hero-photo:before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 83% 78%, rgba(37,42,45,.22), transparent 23%),
    linear-gradient(0deg, transparent 74%, rgba(37,42,45,.07) 74.4%, transparent 74.8%),
    radial-gradient(circle at 68% 44%, rgba(216,154,43,.11), transparent 17%);
}
.hero-photo:after {
  content:""; position:absolute; right:9%; bottom:9%; width:45%; height:24%; border-radius:52% 48% 8px 8px;
  background:linear-gradient(145deg, rgba(239,229,216,.95), rgba(181,158,132,.92));
  box-shadow:0 -110px 0 -73px rgba(255,253,248,.94), -190px 0 0 -145px rgba(45,42,37,.72);
}
.soft-card {
  position:absolute; left:0; bottom:54px; width:min(380px, 54%);
  padding:28px; border-radius:34px;
  background:rgba(255,253,248,.84); backdrop-filter: blur(18px);
  border:1px solid rgba(255,255,255,.82); box-shadow:var(--shadow);
}
.soft-card small { display:block; color:var(--accent-dark); text-transform:uppercase; letter-spacing:.18em; font-weight:900; margin-bottom:14px; }
.soft-card p { color: var(--muted); margin:0; }
.swatches { display:flex; gap:12px; margin-top:22px; }
.swatches i { width:42px; height:42px; border-radius:50%; border:1px solid rgba(37,42,45,.08); }
.swatches i:nth-child(1) { background:#fff4e0; } .swatches i:nth-child(2) { background:#d8c9b4; } .swatches i:nth-child(3) { background:#d89a2b; } .swatches i:nth-child(4) { background:#252a2d; }

/* Intro */
.intro-ribbon { padding-top: 26px; }
.intro-panel { border-radius: var(--radius-xl); background: rgba(255,255,255,.64); border: 1px solid var(--line-soft); padding: clamp(30px, 5vw, 62px); box-shadow: 0 10px 40px rgba(37,42,45,.04); }
.intro-panel > p { max-width: 820px; color: var(--muted); font-size: 18px; }
.ribbon-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top: 30px; }
.ribbon-grid article { min-height: 140px; padding:24px; border-radius:26px; background:var(--cream); border:1px solid var(--line-soft); }
.ribbon-grid strong { display:block; letter-spacing:.13em; text-transform:uppercase; font-size:13px; margin-bottom:9px; }
.ribbon-grid strong:before { content:""; display:inline-block; width:9px; height:9px; border-radius:50%; background:var(--accent); margin-right:10px; }
.ribbon-grid span { color: var(--muted); }

/* About */
.about-grid { display:grid; grid-template-columns: .98fr 1.02fr; align-items:center; gap:clamp(38px,7vw,86px); }
.portrait-card { position:relative; min-height: 620px; padding: 26px; }
.portrait-card:before { content:""; position:absolute; inset: 0 18% 12% 0; border-radius:52px 52px 52px 14px; background:var(--sand); opacity:.86; }
.portrait-card img, .portrait-placeholder { position:relative; width:100%; height: 580px; object-fit:cover; border-radius:40px 40px 12px 40px; box-shadow:var(--shadow); overflow:hidden; }
.portrait-placeholder {
  background:
    linear-gradient(90deg, rgba(255,253,248,.72), rgba(255,253,248,.18) 46%, transparent),
    linear-gradient(135deg, #fbf4e8 0 34%, #eadbc6 34% 34.7%, #fffaf2 34.7% 66%, #d6c3aa 66% 66.7%, #f2e5d3 66.7% 100%);
}
.portrait-placeholder:before {
  content:""; position:absolute; left:9%; top:13%; width:54%; height:38%;
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.96), rgba(239,229,216,.9)),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(37,42,45,.08) 25px 26px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(37,42,45,.07) 43px 44px);
  box-shadow:
    142px 100px 0 -48px rgba(216,154,43,.32),
    196px 24px 0 -62px rgba(37,42,45,.14),
    28px 270px 0 -86px rgba(255,253,248,.92);
  transform: rotate(-3deg);
}
.portrait-placeholder:after {
  content:""; position:absolute; right:8%; bottom:11%; width:70%; height:34%;
  border-radius:34px 34px 12px 34px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.76), rgba(255,253,248,.18)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(37,42,45,.09) 35px 36px),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(37,42,45,.075) 69px 70px);
  border:1px solid rgba(255,255,255,.7);
  box-shadow: 0 20px 55px rgba(37,42,45,.08);
}
.floating-note { position:absolute; right:0; bottom:84px; width:250px; padding:24px; border-radius:24px 24px 24px 6px; background:rgba(255,253,248,.88); backdrop-filter:blur(14px); border:1px solid rgba(255,255,255,.8); box-shadow:var(--shadow); }
.floating-note span { display:block; font-family:Arial, Helvetica, sans-serif; font-weight:700; letter-spacing:-.045em; color:var(--accent-dark); font-size:24px; line-height:1.15; margin-bottom:8px; }
.floating-note p { margin:0; color:var(--muted); font-size:14px; }
.about-copy p { color:#504b44; font-size:17px; max-width:700px; }

.brand-origin-card {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:start;
  max-width:700px;
  margin:30px 0 4px;
  padding:24px;
  border-radius:28px 28px 28px 8px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line-soft);
  box-shadow:0 12px 34px rgba(37,42,45,.055);
}
.brand-origin-card > span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:74px;
  height:74px;
  border-radius:22px;
  background:linear-gradient(135deg, #e7b148, var(--accent));
  color:var(--black);
  font-weight:900;
  letter-spacing:-.07em;
  font-size:28px;
}
.brand-origin-card h3 {
  margin:0 0 8px;
  font-size:21px;
}
.brand-origin-card p {
  margin:0;
  color:var(--muted);
  font-size:15px;
}


/* Sections */
.section-head { display:flex; justify-content:space-between; align-items:end; gap:34px; margin-bottom:34px; }
.section-head > p, .section-head div + p { max-width: 470px; color: var(--muted); margin-bottom: 0; }
.service-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.service-card { position:relative; min-height:250px; padding:28px 28px 58px; border-radius:30px; background:rgba(255,255,255,.7); border:1px solid var(--line-soft); overflow:hidden; transition:.22s; }
.service-card:before { content:""; position:absolute; right:22px; bottom:22px; width:78px; height:78px; border-radius:50%; background:rgba(216,154,43,.09); }
.service-card:hover { transform: translateY(-4px); background:#fff; box-shadow: var(--shadow); }
.service-card span { display:block; font-family:Arial, Helvetica, sans-serif; font-weight:800; letter-spacing:-.06em; font-size:42px; color:var(--accent); line-height:1; margin-bottom:18px; }
.service-card p { color:var(--muted); font-size:15px; }
.service-card em { position:absolute; left:28px; bottom:24px; font-style:normal; color:var(--accent-dark); font-size:12px; text-transform:uppercase; letter-spacing:.13em; font-weight:850; opacity:1; transform:none; transition:.22s; }
.service-card:hover em { opacity:1; transform:translateX(3px); }
.service-card h3, .service-card p { position:relative; z-index:1; }

.audience-section { padding-top:0; }
.audience-panel { border-radius: 42px; background: var(--black); color:white; padding:clamp(38px, 6vw, 76px); position:relative; overflow:hidden; }
.audience-panel:before { content:""; position:absolute; right:-100px; top:-100px; width:360px; height:360px; border:1px solid rgba(216,154,43,.38); border-radius:50%; }
.audience-panel .eyebrow { color: var(--accent); }
.audience-panel h2 { color:white; max-width: 820px; }
.audience-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:38px; }
.audience-grid article { padding:24px; border-radius:26px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); }
.audience-grid h3 { color:white; }
.audience-grid p { color:rgba(255,255,255,.72); margin:0; font-size:14px; }

.guide-panel { display:grid; grid-template-columns: .78fr 1.22fr; gap:24px; padding: clamp(34px, 5vw, 64px); border-radius: var(--radius-xl); background: #fff; border:1px solid var(--line-soft); box-shadow:var(--shadow); }
.guide-copy p { color:var(--muted); }
.guide-cards { display:grid; gap:14px; }
.guide-card { display:block; padding:24px; border-radius:28px; background:var(--cream); border:1px solid var(--line-soft); transition:.22s; }
.guide-card:hover { transform:translateX(3px); background:#fff9ee; }
.guide-card span { display:block; color:var(--accent-dark); font-size:12px; text-transform:uppercase; letter-spacing:.16em; font-weight:850; margin-bottom:8px; }
.guide-card p { color:var(--muted); margin:0; }

.process-flow { display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; }
.step { padding:24px; border-radius:26px; background:rgba(255,255,255,.65); border:1px solid var(--line-soft); min-height: 170px; }
.step span { display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:50%; background:rgba(216,154,43,.14); color:var(--accent-dark); font-weight:900; margin-bottom:18px; }
.step p { color:var(--muted); font-size:14px; margin:0; }

.portfolio-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.project-card { min-width:0; }
.project-image, .archive-card-image { position:relative; display:block; height: 300px; border-radius:30px; overflow:hidden; background: var(--sand); box-shadow: 0 12px 34px rgba(37,42,45,.07); }
.project-image img, .archive-card-image img { width:100%; height:100%; object-fit:cover; }
.image-placeholder { display:block; width:100%; height:100%; background: linear-gradient(135deg, #f8f1e7, #d8c9b4); }
.image-placeholder:after { content:""; display:block; width:100%; height:100%; background: radial-gradient(circle at 68% 70%, rgba(37,42,45,.18), transparent 23%), linear-gradient(90deg, transparent 52%, rgba(216,154,43,.18) 52.4%, transparent 53%); }
.label { position:absolute; left:16px; top:16px; padding:8px 11px; border-radius:999px; background:rgba(255,253,248,.9); color:var(--accent-dark); font-size:11px; letter-spacing:.13em; text-transform:uppercase; font-weight:850; }
.project-card h3 { margin-top:16px; }
.project-card p { color:var(--muted); font-size:14px; margin:0; }

.pricing-section { padding-top: 0; }
.pricing-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:clamp(32px,6vw,80px); align-items:start; }
.pricing-grid > div:first-child p { color:var(--muted); font-size:18px; }
.pricing-table { border-radius:34px; background:white; border:1px solid var(--line-soft); box-shadow:var(--shadow); padding:18px; }
.pricing-table div { display:flex; justify-content:space-between; gap:16px; align-items:baseline; padding:18px 14px; border-bottom:1px solid var(--line-soft); }
.pricing-table span { color:var(--muted); }
.pricing-table strong { color:var(--black); }
.pricing-table p { margin:18px 14px 0; color:var(--muted); font-size:14px; }
.pricing-table .text-link { margin-left:14px; }

.contact-section { padding-top: 0; }
.contact-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:28px; align-items:start; border-radius:var(--radius-xl); background:var(--black); color:white; padding:clamp(34px,5vw,64px); }
.contact-grid .eyebrow { color:var(--accent); }
.contact-grid h2 { color:white; }
.contact-grid p { color:rgba(255,255,255,.74); font-size:18px; }
.contact-details { display:grid; gap:8px; margin-top:26px; }
.contact-details a { color:white; }
.form-card { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:32px; padding:24px; }
.vam-form { display:grid; gap:12px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.vam-form input, .vam-form textarea, .vam-form select { width:100%; border:1px solid rgba(255,255,255,.15); border-radius:18px; min-height:54px; padding:0 16px; background:rgba(255,255,255,.92); color:var(--ink); }
.vam-form textarea { min-height:140px; padding-top:16px; resize:vertical; }
.vam-form .btn { width:max-content; }
.vam-form .notice { padding:14px 16px; border-radius:16px; background:rgba(216,154,43,.14); color:white; }
.vam-form label { font-size:13px; color:rgba(255,255,255,.78); display:grid; gap:6px; }

/* Pages and archives */
.page-hero, .archive-hero, .single-hero { padding: clamp(72px, 9vw, 128px) 0 clamp(44px, 6vw, 82px); }
.wp-content { font-size: 18px; color: #4f4b44; }
.wp-content h2 { margin-top: 50px; }
.wp-content h3 { margin-top: 34px; color: var(--ink); }
.wp-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.wp-content ul, .wp-content ol { padding-left: 1.3em; }
.featured-image img { width:100%; max-height:740px; object-fit:cover; border-radius:var(--radius-xl); box-shadow:var(--shadow); }
.cards-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.archive-card { background:#fff; border:1px solid var(--line-soft); border-radius:32px; padding:18px; }
.archive-card-image { height:240px; margin-bottom:18px; }
.archive-card h2 { font-size:32px; }
.archive-card p { color: var(--muted); }
.pagination-wrap { margin-top: 34px; }
.nav-links { display:flex; gap:10px; align-items:center; justify-content:center; }
.nav-links a, .nav-links span { min-width:42px; height:42px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--line); }
.nav-links .current { background:var(--accent); color:var(--black); border-color:var(--accent); }
.project-meta-list { display:flex; flex-wrap:wrap; gap:12px; margin-top: 28px; }
.project-meta-list span { padding:12px 16px; background:#fff; border:1px solid var(--line-soft); border-radius:999px; color:var(--muted); }
.project-meta-list strong { color:var(--ink); margin-right:8px; }

/* Footer */
.site-footer { background:#fff; border-top:1px solid var(--line-soft); padding:54px 0 20px; }
.footer-inner { width:min(var(--max), calc(100% - 44px)); margin:0 auto; display:grid; grid-template-columns:1.25fr .75fr .75fr .75fr; gap:34px; }
.footer-brand .custom-logo { width:210px; }
.footer-brand .custom-logo-link:after { display:none; }
.footer-brand p { color:var(--muted); max-width:240px; }
.footer-col { display:grid; gap:6px; align-content:start; }
.footer-col h2 { font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:850; text-transform:uppercase; letter-spacing:.16em; margin-bottom:10px; }
.footer-col a, .footer-col p { color:var(--muted); font-size:14px; margin:0; }
.footer-bottom { width:min(var(--max), calc(100% - 44px)); margin:42px auto 0; padding-top:18px; border-top:1px solid var(--line-soft); display:flex; justify-content:space-between; color:var(--muted); font-size:13px; }

@media (max-width: 1120px) {
  .desktop-nav { display:none; }
  .menu-button { display:block; }
  .mobile-nav {
    display:grid; position:fixed; inset:96px 0 auto; background:rgba(255,253,248,.97); border-bottom:1px solid var(--line-soft);
    padding:22px; gap:10px; transform:translateY(-120%); opacity:0; pointer-events:none; transition:.24s;
  }
  body.menu-open .mobile-nav { transform:translateY(0); opacity:1; pointer-events:auto; }
  .mobile-nav a { padding:14px 0; border-bottom:1px solid var(--line-soft); text-transform:uppercase; letter-spacing:.12em; font-weight:850; font-size:13px; }
}
@media (max-width: 980px) {
  .inner, .narrow { width: min(100% - 32px, var(--max)); }
  .header-inner { width: min(100% - 32px, 1440px); height:86px; }
  .custom-logo { width: 280px; }
  .mobile-nav { inset-top:86px; }
  .hero-grid, .about-grid, .guide-panel, .pricing-grid, .contact-grid { grid-template-columns:1fr; }
  .hero-visual { min-height: 510px; order:-1; }
  .hero-copy { order:1; }
  .hero-section { padding-top:28px; }
  .ribbon-grid, .service-grid, .audience-grid, .process-flow, .portfolio-grid, .cards-grid, .footer-inner { grid-template-columns:1fr 1fr; }
  .section-head { display:block; }
}
@media (max-width: 640px) {
  section { padding: 62px 0; }
  .header-inner { height: 82px; }
  .custom-logo { width: 230px; }
  .custom-logo-link:after { display:none; }
  h1 { font-size: clamp(56px, 18vw, 78px); }
  h2 { font-size: clamp(37px, 12vw, 52px); }
  .microline { font-size: 17px; line-height: 1.65; margin-bottom: 22px; }
  .hero-visual { min-height: 420px; }
  .hero-photo { inset:0; border-radius: 36px; }
  .soft-card { left: 20px; right: 20px; width:auto; bottom:22px; border-radius:28px; }
  .btn { width:100%; min-height:58px; }
  .intro-panel, .audience-panel, .guide-panel, .contact-grid { border-radius:32px; padding:28px; }
  .ribbon-grid, .service-grid, .audience-grid, .process-flow, .portfolio-grid, .cards-grid, .footer-inner, .form-row { grid-template-columns:1fr; }
  .portrait-card { min-height: 470px; padding: 12px; }
  .portrait-card img, .portrait-placeholder { height:440px; border-radius:30px; }
  .floating-note { position:relative; right:auto; bottom:auto; width:auto; margin:-72px 18px 0; }
  .project-image { height:250px; }
  .pricing-table div { display:block; }
  .brand-origin-card { grid-template-columns:1fr; padding:22px; }
  .brand-origin-card > span { width:64px; height:64px; }
  .footer-bottom { display:grid; gap:10px; }
}



/* Service detail */
.service-single .wp-content {
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:clamp(34px, 6vw, 82px);
  align-items:start;
}
.service-body {
  background:rgba(255,255,255,.72);
  border:1px solid var(--line-soft);
  border-radius:var(--radius-xl);
  padding:clamp(30px, 5vw, 64px);
  box-shadow:0 10px 40px rgba(37,42,45,.045);
}
.service-body ul {
  display:grid;
  gap:10px;
  margin:24px 0 32px;
  padding:0;
  list-style:none;
}
.service-body li {
  position:relative;
  padding-left:28px;
}
.service-body li:before {
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--accent);
}
.service-side {
  position:sticky;
  top:124px;
  border-radius:34px;
  background:var(--black);
  color:white;
  padding:28px;
}
.service-side p { color:rgba(255,255,255,.72); }
.service-side .btn { width:100%; margin-top:12px; }
.service-side .text-link { color:white; }
.service-side .text-link:after { background:var(--accent); }

.archive-service .cards-grid .archive-card {
  transition:.22s;
}
.archive-service .cards-grid .archive-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
@media (max-width: 980px) {
  .service-single .wp-content { grid-template-columns:1fr; }
  .service-side { position:relative; top:auto; }
}


/* Fix contrast in service sidebar */
.service-side,
.service-side h2,
.service-side h3,
.service-side h4 {
  color:#fff;
}
.service-side p {
  color:rgba(255,255,255,.78);
}
.service-side .eyebrow {
  color:var(--accent);
}
.service-side a:not(.btn) {
  color:#fff;
  text-decoration:none;
}
.service-side .text-link {
  color:#fff;
}
.service-side .btn-primary {
  color:var(--black);
}

.brand-origin-card p strong {
  font-weight:900;
  color:var(--black);
  letter-spacing:.02em;
}

@media (max-width: 640px) {
  .location-pill { font-size:15px; }
}


/* Desktop: keep the service line in one row */
@media (min-width: 1100px) {
  .microline {
    max-width: none;
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.4;
  }
}


/* Header menu: all desktop menu items without frames */
.desktop-nav .nav-cta,
.desktop-nav a[href*="#kontakt"]:last-child {
  padding:10px 0;
  border:0;
  border-radius:0;
  background:transparent;
}
.desktop-nav .nav-cta:after,
.desktop-nav a[href*="#kontakt"]:last-child:after {
  display:block;
}


/* Larger hero helper lines on desktop */
@media (min-width: 1100px) {
  .microline {
    max-width:none;
    white-space:nowrap;
    font-size:20px;
    line-height:1.45;
    font-weight:800;
    letter-spacing:.005em;
    margin-bottom:28px;
  }
  .microline::before,
  .microline::after {
    width:9px;
    height:9px;
    margin-bottom:3px;
  }
  .location-pill {
    font-size:17px;
    font-weight:750;
    line-height:1.5;
    margin-top:22px;
    white-space:nowrap;
  }
  .location-pill:before,
  .location-pill:after {
    width:9px;
    height:9px;
    flex-basis:9px;
  }
}


/* Fix hero layout after larger helper lines */
@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns:minmax(0, .92fr) minmax(500px, 1.08fr);
  }
  .hero-copy,
  .hero-visual {
    min-width:0;
  }
  .microline {
    width:max-content;
    max-width:calc(100vw - 120px);
  }
  .hero-visual {
    min-height:660px;
  }
  .soft-card {
    width:min(380px, 62%);
  }
}
@media (min-width: 1100px) and (max-width: 1240px) {
  .hero-grid {
    grid-template-columns:minmax(0, .98fr) minmax(430px, 1.02fr);
  }
  h1 {
    font-size:clamp(56px, 7.5vw, 106px);
  }
}


/* Hero desktop balance: avoid text overlapping the visual */
@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns:minmax(610px, 1.08fr) minmax(430px, .92fr);
    gap:clamp(42px, 5vw, 76px);
  }
  .hero-copy {
    max-width:720px;
    min-width:0;
    position:relative;
    z-index:2;
  }
  .hero-copy h1 {
    font-size:clamp(66px, 6.6vw, 108px);
    max-width:720px;
  }
  .hero-visual {
    min-width:0;
    min-height:610px;
    position:relative;
    z-index:1;
  }
  .hero-photo {
    inset:0;
  }
  .soft-card {
    width:min(380px, 64%);
  }
  .btn-row {
    flex-wrap:nowrap;
  }
}

@media (min-width: 1100px) and (max-width: 1320px) {
  .hero-grid {
    grid-template-columns:minmax(560px, 1.08fr) minmax(390px, .92fr);
    gap:40px;
  }
  .hero-copy h1 {
    font-size:clamp(64px, 6.3vw, 94px);
  }
  .hero-visual {
    min-height:560px;
  }
  .soft-card {
    width:min(330px, 66%);
    padding:24px;
  }
}


/* Social media icons */
.social-icons {
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.social-icons a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:42px;
  height:42px;
  padding:0 13px;
  border-radius:999px;
  border:1px solid var(--line-soft);
  background:rgba(255,255,255,.64);
  color:var(--ink);
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
}
.social-icons a:hover {
  transform:translateY(-2px);
  background:#fff;
  border-color:rgba(216,154,43,.45);
}
.social-icons svg {
  width:18px;
  height:18px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}
.social-icons svg path {
  fill:currentColor;
  stroke:none;
}
.social-icons span {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:850;
}
.header-social {
  margin-left:8px;
  flex:0 0 auto;
}
.header-social a {
  width:38px;
  height:38px;
  min-width:38px;
  padding:0;
  background:rgba(216,154,43,.08);
  border-color:rgba(185,120,22,.20);
}
.header-social span {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}
.mobile-social {
  margin-top:12px;
}
.contact-social {
  margin-top:22px;
}
.contact-social a {
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.18);
  color:#fff;
}
.contact-social a:hover {
  background:rgba(255,255,255,.16);
  border-color:rgba(216,154,43,.5);
}
.footer-social {
  margin-top:2px;
}
.footer-social a {
  width:42px;
  min-width:42px;
  padding:0;
}
.footer-social span {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}
.social-hint {
  font-size:12px !important;
  line-height:1.45;
  color:var(--muted);
  margin-top:8px !important;
}
@media (max-width:1120px) {
  .header-social { display:none; }
  .mobile-social a {
    width:auto;
    min-width:42px;
    padding:0 13px;
  }
  .mobile-social span {
    position:static;
    width:auto;
    height:auto;
    overflow:visible;
    clip:auto;
    white-space:normal;
  }
}


/* v1.3.1 hero polish */
@media (min-width: 1100px) {
  /* 1. top helper line more centered */
  .microline {
    width: fit-content;
    max-width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* 2. soft card moved slightly right so it doesn't stick out to the left */
  .soft-card {
    left: 24px;
  }

  /* 3. lower location line slightly larger */
  .location-pill {
    font-size: 19px;
    font-weight: 780;
    line-height: 1.55;
  }
  .location-pill:before,
  .location-pill:after {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }
}


/* v1.3.2 definitive fixes: hero line, soft card, location row and social visibility */
@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns:minmax(560px, .98fr) minmax(500px, 1.02fr);
    gap:clamp(48px, 6vw, 92px);
    align-items:center;
  }

  .hero-grid > .microline {
    grid-column:1 / -1;
    justify-self:center;
    width:fit-content;
    max-width:100%;
    margin:0 auto -8px;
    text-align:center;
    white-space:nowrap;
    font-size:20px;
    line-height:1.4;
    font-weight:850;
    letter-spacing:.002em;
  }

  .hero-copy {
    max-width:690px;
  }

  .hero-copy h1 {
    max-width:690px;
    font-size:clamp(64px, 6.2vw, 104px);
  }

  .hero-visual {
    min-height:620px;
    min-width:0;
  }

  .hero-photo {
    inset:0;
  }

  .soft-card {
    left:clamp(38px, 5vw, 72px);
    bottom:58px;
    width:min(380px, 58%);
  }

  .location-pill {
    font-size:20px;
    font-weight:800;
    line-height:1.55;
    margin-top:24px;
    white-space:nowrap;
  }

  .location-pill:before,
  .location-pill:after {
    width:10px;
    height:10px;
    flex-basis:10px;
  }

  .header-social {
    display:flex;
  }
}

@media (min-width: 1100px) and (max-width: 1320px) {
  .hero-grid {
    grid-template-columns:minmax(520px, 1fr) minmax(440px, .92fr);
    gap:44px;
  }

  .hero-grid > .microline {
    font-size:18px;
  }

  .hero-copy h1 {
    font-size:clamp(60px, 5.8vw, 88px);
  }

  .hero-visual {
    min-height:560px;
  }

  .soft-card {
    left:38px;
    width:min(340px, 60%);
  }

  .location-pill {
    font-size:18px;
  }
}


/* v1.3.3: soft card should slightly protrude to the left again */
@media (min-width: 1100px) {
  .soft-card {
    left: clamp(-18px, -1vw, -8px);
    bottom: 58px;
    width: min(380px, 58%);
  }
}

@media (min-width: 1100px) and (max-width: 1320px) {
  .soft-card {
    left: -12px;
    width: min(340px, 60%);
  }
}


/* v1.3.4: remove small unwanted white line in hero illustration */
.hero-photo:after {
  box-shadow:-190px 0 0 -145px rgba(45,42,37,.72);
}
