/* ==========================================================================
   Karakızlı Architecture — theme styles
   Palette:  background #F2F0EB · dark #171817 · warm grey #8D8E88 · signature accent #C7401C (kiln red)
   Change the accent in ONE place: --kk-accent below (and --kk-accent-2 for its lighter twin used on dark).
   ========================================================================== */

:root {
  --kk-bg: #F2F0EB;
  --kk-dark: #171817;
  --kk-gray: #8D8E88;
  --kk-gray-d: #5F605B;             /* readable grey for body copy on the light background */
  --kk-accent: #C7401C;
  --kk-accent-2: #EE6A40;
  --kk-surface: #FAF9F6;
  --kk-line: rgba(23, 24, 23, .14);
  --kk-head-h: 76px;
  --kk-serif: 'Instrument Serif', Georgia, serif;
  --kk-sans: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --r: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--kk-bg); color: var(--kk-dark); font: 400 16px/1.6 var(--kk-sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--kk-accent); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; padding: 8px 14px; z-index: 200; }
.skip:focus { left: 8px; }
section[id], span[id] { scroll-margin-top: calc(var(--kk-head-h) - 10px); }

/* ------------------------------ header ------------------------------ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--kk-head-h); display: flex; align-items: center; gap: 24px; padding: 0 32px; transition: background .3s, color .3s, border-color .3s; border-bottom: 1px solid transparent; }
.admin-bar .site-header { top: 32px; }
.logo { display: flex; flex-direction: column; line-height: .95; letter-spacing: -.03em; text-decoration: none; flex: 0 0 auto; }
.logo-1 { font: 400 26px var(--kk-sans); }
.logo-2 { font: 300 15px var(--kk-sans); letter-spacing: .02em; opacity: .85; margin-top: 3px; }
.logo.static .logo-1 { font-size: 22px; }
.logo img { max-height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 14px; margin-left: auto; }
.nav a { text-decoration: none; opacity: .82; transition: opacity .2s; padding: 6px 0; }
.nav a:hover { opacity: 1; }
.nav .nav-cta { display: none; }
.head-actions { display: flex; align-items: center; gap: 8px; }
.langs { display: flex; gap: 2px; font-size: 12px; letter-spacing: .06em; margin-right: 6px; }
.langs a { text-decoration: none; padding: 5px 8px; border-radius: 999px; opacity: .7; }
.langs a[aria-current="true"] { opacity: 1; background: rgba(128,128,128,.22); }
.icon-btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; padding: 8px 12px; border-radius: 999px; font-size: 14px; position: relative; transition: background .2s; }
.icon-btn:hover { background: rgba(128,128,128,.2); }
.cart-count { min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--kk-accent); color: #fff; font-size: 11px; font-weight: 600; display: inline-grid; place-items: center; }
.cart-count:empty, .cart-count:where([data-zero]) { display: none; }
.burger { display: none; width: 42px; height: 42px; background: none; border: 0; position: relative; }
.burger i { position: absolute; left: 10px; right: 10px; height: 1.5px; background: currentColor; transition: transform .25s, top .25s; }
.burger i:first-child { top: 17px; } .burger i:last-child { top: 24px; }
.burger[aria-expanded="true"] i:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] i:last-child { top: 21px; transform: rotate(-45deg); }

/* light pages: solid header from the start */
.site-header { background: rgba(242, 240, 235, .92); color: var(--kk-dark); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--kk-line); }
/* dark-hero pages: transparent + light text until scrolled */
.has-dark-hero .site-header:not(.scrolled):not(.menu-open) { background: linear-gradient(to bottom, rgba(23,24,23,.78), rgba(23,24,23,0)); color: #F2F0EB; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }

/* ------------------------------ layout ------------------------------ */
.wrap { width: min(1180px, 100% - 64px); margin: 0 auto; }
.wrap.narrow { width: min(800px, 100% - 64px); }
.sec { padding: 120px 0; }
.sec.tight { padding: 40px 0 90px; }
.sec.alt { background: #E9E6DF; }
.sec.dark, .final-cta { background: var(--kk-dark); color: #F2F0EB; }
.center { text-align: center; }
.eyebrow { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--kk-accent); margin: 0 0 16px; font-weight: 500; }
.dark .eyebrow { color: var(--kk-accent-2); }
h1, h2 { font-family: var(--kk-serif); font-weight: 400; letter-spacing: -.012em; line-height: 1.02; margin: 0 0 22px; }
h2 { font-size: clamp(36px, 4.8vw, 62px); max-width: 20ch; }
h2 em, h1 em { font-style: italic; color: var(--kk-accent); }
.dark h2 em, .final-cta h2 em { color: var(--kk-accent-2); }
h3 { font: 500 19px/1.3 var(--kk-sans); margin: 0 0 8px; }
.lead { font-size: 19px; line-height: 1.55; color: var(--kk-gray-d); max-width: 58ch; margin: 0 0 18px; }
.dark .lead, .final-cta .lead { color: rgba(242,240,235,.72); }
.fine { font-size: 13px; color: var(--kk-gray-d); }
.textlink { color: var(--kk-dark); font-weight: 500; text-decoration: underline; text-decoration-color: var(--kk-accent); text-underline-offset: 5px; text-decoration-thickness: 2px; }
.textlink:hover { color: var(--kk-accent); }
.prose { font-size: 17px; }
.prose p { margin: 0 0 1.1em; }
.prose h2 { font-size: 36px; max-width: none; margin-top: 1.4em; }
.prose h3 { font-size: 22px; margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose img { border-radius: 12px; margin: 1.4em 0; }
.prose a { color: var(--kk-accent); }
.sub-h { font: 400 30px/1.1 var(--kk-serif); margin: 70px 0 20px; }

.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal:not(.in) { opacity: 0; transform: translateY(22px); }

/* buttons (the configurator has its own scoped copy; these are for the rest of the site) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 28px; border-radius: 999px; border: 1.5px solid var(--kk-dark); font-size: 15px; font-weight: 500; text-decoration: none; transition: all .2s; text-align: center; background: none; cursor: pointer; }
.btn.primary { background: var(--kk-accent); border-color: var(--kk-accent); color: #fff; font-weight: 600; }
.btn.primary:hover { background: #a93513; border-color: #a93513; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(199,64,28,.28); }
.btn.dark { background: var(--kk-dark); color: var(--kk-bg); }
.btn.dark:hover { background: #000; }
.btn.ghost-dark:hover { background: var(--kk-dark); color: var(--kk-bg); }
.btn.ghost-light { border-color: rgba(242,240,235,.4); color: #F2F0EB; }
.btn.ghost-light:hover { border-color: #F2F0EB; background: rgba(242,240,235,.08); }
.btn.inline { display: inline-flex; }

/* ------------------------------ trust bar ------------------------------ */
.trust-bar { background: var(--kk-dark); color: #F2F0EB; border-top: 1px solid rgba(242,240,235,.1); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 34px 0; }
.trust-grid b { display: block; font-weight: 500; margin-bottom: 3px; }
.trust-grid span { font-size: 14px; color: rgba(242,240,235,.6); }

/* ------------------------------ gallery / media ------------------------------ */
.kk-when-note-wrap { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--kk-gray-d); margin: 10px 0 26px; }
.kk-when-note-wrap .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--kk-accent); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.kk-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 36px; }
.kk-media { margin: 0; position: relative; overflow: hidden; border-radius: 14px; background: #ddd9d0; grid-column: span 2; aspect-ratio: 4/3; }
.kk-media:first-child:not([hidden]), .kk-media.kind-video { grid-column: span 4; aspect-ratio: 16/10; }
.kk-media img, .kk-media video { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.kk-media:hover img { transform: scale(1.04); }
.kk-media figcaption { position: absolute; left: 12px; bottom: 12px; right: 12px; font-size: 13px; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.6); opacity: 0; transform: translateY(6px); transition: all .3s; }
.kk-media:hover figcaption { opacity: 1; transform: none; }
.kk-gallery.drawings .kk-media { background: #fff; grid-column: span 3; aspect-ratio: 4/3; }
.kk-gallery.drawings .kk-media img { object-fit: contain; }
.kk-gallery.drawings .kk-media:first-child { grid-column: span 3; aspect-ratio: 4/3; }

/* ------------------------------ story ------------------------------ */
.story-sec { padding-bottom: 60px; }
.story { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; margin-top: 40px; }
.story-sticky { position: sticky; top: calc(var(--kk-head-h) + 24px); align-self: start; height: max-content; }
.story-frame { position: relative; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; background: #ddd9d0; }
.story-img { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.story-img.on { opacity: 1; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-dots { display: flex; gap: 6px; margin-top: 14px; }
.story-dots i { flex: 1; height: 3px; border-radius: 2px; background: var(--kk-line); transition: background .4s; }
.story-dots i.on { background: var(--kk-accent); }
.story-step { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; opacity: .3; transition: opacity .5s; }
.story-step.on { opacity: 1; }
.story-step .n { font: italic 400 24px var(--kk-serif); color: var(--kk-accent); margin-bottom: 8px; }
.story-step h3 { font: 400 clamp(30px, 3.4vw, 44px)/1.05 var(--kk-serif); margin-bottom: 14px; }
.story-step p { font-size: 18px; color: var(--kk-gray-d); max-width: 40ch; margin: 0; }

/* ------------------------------ house ------------------------------ */
.house-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.house-block h2 { max-width: none; }
.card { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--r); padding: 30px; }
.facts h3 { font: 400 26px var(--kk-serif); margin-bottom: 14px; }
.facts dl { margin: 0; display: grid; gap: 0; font-size: 15px; }
.facts dl div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--kk-line); }
.facts dt { color: var(--kk-gray-d); }
.facts dd { margin: 0; font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.who-card { border-top: 2px solid var(--kk-dark); padding: 18px 4px 0; }
.who-card b { display: block; font-weight: 600; margin-bottom: 6px; }
.who-card p { margin: 0; color: var(--kk-gray-d); font-size: 15px; }

/* ------------------------------ packages ------------------------------ */
.pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 44px 0 26px; align-items: stretch; }
.pkg { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: 22px; padding: 32px 28px 28px; display: flex; flex-direction: column; position: relative; }
.pkg.featured { border: 2px solid var(--kk-accent); background: #fff; box-shadow: 0 24px 60px rgba(199,64,28,.1); }
.pkg .tag { position: absolute; top: -13px; left: 26px; background: var(--kk-accent); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.pkg .pp { font: 400 52px/1 var(--kk-serif); margin: 10px 0 6px; font-variant-numeric: tabular-nums; }
.pkg-for { color: var(--kk-gray-d); font-size: 14px; margin: 0 0 20px; }
.outcomes { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 11px; flex: 1; }
.outcomes li { padding-left: 26px; position: relative; font-size: 15.5px; line-height: 1.45; }
.outcomes li::before { content: ''; position: absolute; left: 0; top: .42em; width: 12px; height: 7px; border-left: 2px solid var(--kk-accent); border-bottom: 2px solid var(--kk-accent); transform: rotate(-45deg); }
.inc { margin: 0 0 22px; font-size: 14px; color: var(--kk-gray-d); }
.inc summary { cursor: pointer; list-style: none; text-decoration: underline; text-underline-offset: 4px; }
.inc summary::-webkit-details-marker { display: none; }
.inc ul { padding-left: 18px; margin: 10px 0 0; display: grid; gap: 4px; }
.pkg .btn { width: 100%; }
.next-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.next h3 { font: 400 28px/1.1 var(--kk-serif); }
.next p { color: var(--kk-gray-d); margin: 0 0 18px; }

/* ------------------------------ timeline / steps ------------------------------ */
.timeline { list-style: none; margin: 46px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(242,240,235,.25); }
.timeline li { padding: 26px 22px 6px 0; }
.timeline li + li { padding-left: 22px; border-left: 1px solid rgba(242,240,235,.12); }
.timeline .n, .steps4 .n { font: italic 400 24px var(--kk-serif); color: var(--kk-accent-2); }
.timeline p { font-size: 14.5px; color: rgba(242,240,235,.68); margin: 0; }
.steps4 { list-style: none; margin: 46px 0 26px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--kk-line); }
.steps4 li { padding: 28px 26px 8px 0; }
.steps4 li + li { padding-left: 26px; border-left: 1px solid var(--kk-line); }
.steps4 .n { color: var(--kk-accent); }
.steps4 p { color: var(--kk-gray-d); font-size: 15.5px; margin: 0 0 10px; }
.steps4 .more { font-size: 14px; }

/* ------------------------------ cards (projects / posts / houses) ------------------------------ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 44px 0 24px; }
.card-project, .card-post, .card-house { text-decoration: none; display: block; }
.ph { position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: #ddd9d0; margin-bottom: 16px; }
.ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
a:hover > .ph img { transform: scale(1.05); }
.ph-empty { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, #e2dfd7, #e2dfd7 12px, #ddd9d0 12px, #ddd9d0 24px); }
.badge-kind { position: absolute; left: 12px; top: 12px; background: var(--kk-dark); color: #F2F0EB; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.card-project h3, .card-post h3, .card-house h3 { font: 400 27px/1.1 var(--kk-serif); margin: 0 0 6px; }
.card-project p, .card-post p, .card-house p { margin: 0; color: var(--kk-gray-d); font-size: 15px; }
.card-post .meta, .card-house .meta { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--kk-gray); margin-bottom: 6px; }
.card-house.soon { opacity: .7; }

/* ------------------------------ about / team / reviews ------------------------------ */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; align-items: start; }
.values { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--kk-line); }
.values li { padding: 20px 0; border-bottom: 1px solid var(--kk-line); }
.values b { display: block; font: 400 26px/1.1 var(--kk-serif); margin-bottom: 4px; }
.values span { color: var(--kk-gray-d); font-size: 15px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 40px; }
.member .ph { aspect-ratio: 4/5; }
.member h3 { font: 400 26px var(--kk-serif); margin: 0; }
.member .role { color: var(--kk-accent); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin: 2px 0 10px; }
.member .bio { font-size: 15px; color: var(--kk-gray-d); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.review { margin: 0; background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--r); padding: 28px; }
.stars { color: var(--kk-accent); letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { margin: 0 0 16px; font-size: 17px; line-height: 1.55; }
.review figcaption span { display: block; color: var(--kk-gray-d); font-size: 13px; }

/* ------------------------------ faq ------------------------------ */
.faq { max-width: 860px; margin-top: 30px; }
.faq details { border-top: 1px solid var(--kk-line); padding: 22px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--kk-line); }
.faq summary { cursor: pointer; list-style: none; font-size: 19px; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 26px; line-height: 1; color: var(--kk-accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--kk-gray-d); margin: 14px 0 0; max-width: 64ch; }
#faq .textlink { display: inline-block; margin-top: 26px; }

/* ------------------------------ social / final cta / mini cta ------------------------------ */
.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.social-chip { text-decoration: none; padding: 14px 26px; border: 1.5px solid var(--kk-dark); border-radius: 999px; font-weight: 500; transition: all .2s; }
.social-chip:hover { background: var(--kk-dark); color: var(--kk-bg); }
.final-cta { padding: 130px 0; text-align: center; }
.final-cta h2 { margin-inline: auto; max-width: 16ch; font-size: clamp(42px, 6vw, 80px); }
.final-cta .lead { margin-inline: auto; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.linklike { background: none; border: 0; padding: 4px 0; text-decoration: underline; text-underline-offset: 4px; color: rgba(242,240,235,.7); font-size: 14px; }
.linklike:hover { color: #fff; }
.mini-cta { background: var(--kk-dark); color: #F2F0EB; padding: 56px 0; }
.mini-cta .wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.mini-cta h2 { font-size: 40px; margin: 0 0 6px; }
.mini-cta p { margin: 0; color: rgba(242,240,235,.7); }

/* ------------------------------ inner pages ------------------------------ */
.page-head { padding: calc(var(--kk-head-h) + 70px) 0 30px; }
.page-head h1 { font-size: clamp(42px, 6vw, 84px); max-width: 18ch; margin-bottom: 18px; }
.soon-page { padding-bottom: 100px; }
.post-hero { margin-bottom: 40px; }
.post-hero img { width: 100%; border-radius: var(--r); aspect-ratio: 16/8; object-fit: cover; }
.post-body { padding-bottom: 80px; font-size: 18px; line-height: 1.7; }
.pager { margin-top: 30px; }
.pager .nav-links { display: flex; gap: 8px; }
.pager a, .pager span { padding: 8px 14px; border: 1px solid var(--kk-line); border-radius: 999px; text-decoration: none; }
.pager .current { background: var(--kk-dark); color: var(--kk-bg); }
.admin-hint { margin: 0; padding: 14px 18px; border: 1.5px dashed var(--kk-accent); border-radius: 12px; color: var(--kk-accent); font-size: 14px; background: rgba(199,64,28,.05); }
.admin-hint a { color: inherit; font-weight: 600; }

.contact-form, .notify-form { display: grid; gap: 16px; max-width: 560px; }
.contact-form label { display: grid; gap: 6px; font-size: 14px; color: var(--kk-gray-d); }
.contact-form input:not(.hp), .contact-form textarea, .inline-form input:not(.hp) { font: inherit; font-size: 16px; color: var(--kk-dark); background: #fff; border: 1px solid var(--kk-line); border-radius: 12px; padding: 13px 15px; width: 100%; }
.contact-form input:focus, .contact-form textarea:focus, .inline-form input:focus { outline: 0; border-color: var(--kk-accent); }
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-form input:not(.hp) { flex: 1 1 240px; }
.notify-form { margin-top: 40px; }
.notify-form h2 { font-size: 30px; }
.hp { position: absolute !important; left: -9999px; width: 0; height: 0; opacity: 0; }

/* ------------------------------ footer ------------------------------ */
.site-footer { background: var(--kk-dark); color: #F2F0EB; padding: 80px 0 34px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand p { color: rgba(242,240,235,.6); font-size: 14.5px; max-width: 34ch; }
.pay-note { display: flex; align-items: center; gap: 8px; color: rgba(242,240,235,.85) !important; }
.site-footer h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--kk-gray); font-weight: 500; margin-bottom: 14px; }
.site-footer nav, .foot-contact { display: grid; gap: 9px; align-content: start; font-size: 15px; }
.site-footer a { text-decoration: none; color: rgba(242,240,235,.82); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.foot-social { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 6px; }
.copyright { margin: 56px 0 0; padding-top: 22px; border-top: 1px solid rgba(242,240,235,.12); font-size: 13px; color: var(--kk-gray); }

/* ------------------------------ WooCommerce (cart / checkout / account) ------------------------------ */
.is-shop { font-size: 16px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .wc-block-components-button:not(.is-link), .wp-block-button__link { background: var(--kk-accent) !important; color: #fff !important; border-radius: 999px !important; padding: 14px 26px !important; font-weight: 600 !important; border: 0 !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .wc-block-components-button:not(.is-link):hover { background: #a93513 !important; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .wc-block-components-text-input input, .select2-container .select2-selection { border-radius: 12px !important; border: 1px solid var(--kk-line) !important; padding: 12px 14px !important; background: #fff !important; }
.woocommerce table.shop_table { border-radius: 14px; border-color: var(--kk-line); background: var(--kk-surface); }
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; display: grid; gap: 4px; }
.woocommerce-MyAccount-navigation a { display: block; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
.woocommerce-MyAccount-navigation .is-active a { background: var(--kk-dark); color: var(--kk-bg); }
.kk-plan { background: var(--kk-surface); border: 1px solid var(--kk-line); border-radius: var(--r); padding: 26px; margin: 0 0 20px; }
.kk-plan header { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: baseline; }
.kk-plan h3 { font: 400 28px var(--kk-serif); margin: 0; }
.kk-plan-date { color: var(--kk-gray-d); font-size: 14px; }
.kk-plan-cfg { list-style: none; padding: 0; margin: 14px 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 6px 20px; font-size: 14px; }
.kk-plan-cfg li { display: flex; justify-content: space-between; border-bottom: 1px solid var(--kk-line); padding: 5px 0; }
.kk-files { list-style: none; padding: 0; display: grid; gap: 8px; }
.kk-wait { background: rgba(199,64,28,.07); padding: 12px 16px; border-radius: 10px; }

/* ------------------------------ tablet / phone ------------------------------ */
@media (max-width: 1100px) {
  .site-header { padding: 0 22px; gap: 14px; }
  .nav { gap: 16px; font-size: 13px; }
  .icon-btn .label { display: none; }
  .pkgs { gap: 12px; } .pkg { padding: 28px 20px 22px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --kk-head-h: 64px; }
  .admin-bar .site-header { top: 46px; }
  .wrap, .wrap.narrow { width: calc(100% - 40px); }
  .sec { padding: 78px 0; }
  .burger { display: block; }
  .nav { position: fixed; inset: 0; background: rgba(23,24,23,.98); color: #F2F0EB; flex-direction: column; justify-content: center; align-items: center; gap: 22px; font-size: 26px; margin: 0; opacity: 0; pointer-events: none; transition: opacity .25s; z-index: -1; }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav .nav-cta { display: inline-flex; margin-top: 12px; background: var(--kk-accent); border-radius: 999px; padding: 12px 28px; font-size: 18px; opacity: 1; color: #fff; }
  .site-header.menu-open { color: #F2F0EB; background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
  .head-actions { margin-left: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .kk-gallery { grid-template-columns: 1fr 1fr; }
  .kk-media, .kk-media:first-child:not([hidden]), .kk-media.kind-video, .kk-gallery.drawings .kk-media { grid-column: span 2; }
  .story { grid-template-columns: 1fr; gap: 0; }
  .story-sticky { top: var(--kk-head-h); z-index: 5; background: var(--kk-bg); padding: 8px 0 4px; }
  .story-step { min-height: 46vh; }
  .house-grid, .about-grid, .next-steps { grid-template-columns: 1fr; gap: 34px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .pkgs, .cards, .reviews { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .timeline, .steps4 { grid-template-columns: 1fr; }
  .timeline li, .timeline li + li, .steps4 li, .steps4 li + li { padding: 22px 0 6px; border-left: 0; border-bottom: 1px solid var(--kk-line); }
  .timeline li, .timeline li + li { border-bottom-color: rgba(242,240,235,.14); }
  .foot-top { grid-template-columns: 1fr; }
  .final-cta { padding: 90px 0; }
  .page-head { padding-top: calc(var(--kk-head-h) + 44px); }
}
