/*
Theme Name: Nozaria Block Theme
Theme URI: https://www.nozariastad.se/
Author: Nozaria / conversion prototype
Description: Block theme converted from the Nozaria Städ static web prototype. Includes seeded content, global settings, quote form handling and SEO metadata.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: nozaria
*/

:root {
  --ink: #17312b;
  --ink-soft: #47645c;
  --green-950: #12352e;
  --green-900: #17483d;
  --green-800: #215c4e;
  --green-700: #2f7463;
  --green-200: #cfe4db;
  --green-100: #e5f1ec;
  --green-50: #f3f8f5;
  --cream: #f7f2e8;
  --cream-2: #fcfaf5;
  --peach: #df8264;
  --peach-dark: #bd6248;
  --white: #fff;
  --line: rgba(23, 49, 43, 0.14);
  --shadow-sm: 0 10px 30px rgba(18, 53, 46, 0.08);
  --shadow-md: 0 22px 60px rgba(18, 53, 46, 0.14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--green-200); color: var(--green-950); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--white);
  padding: .75rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-950); color: var(--white); }
.section--mint { background: var(--green-100); }
.section--white { background: var(--white); }
.stack > * + * { margin-top: 1.25rem; }
.stack--sm > * + * { margin-top: .75rem; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.light-muted { color: rgba(255,255,255,.74); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .9rem;
  color: var(--green-700);
  font-weight: 750;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section--green .eyebrow { color: #a9d8c5; }
.display {
  margin: 0;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.045em;
  font-weight: 600;
}
h1, h2, h3, h4 { color: var(--green-950); }
h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.035em;
}
h2 { margin: 0 0 1rem; font-size: clamp(2.2rem, 4vw, 4.25rem); line-height: 1.04; }
h3 { margin: 0 0 .65rem; font-size: 1.35rem; line-height: 1.25; }
h4 { margin: 0 0 .5rem; font-size: 1rem; }
p { margin: 0 0 1rem; }
.lead { max-width: 760px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.7vw, 1.27rem); line-height: 1.65; }
.section--green h1, .section--green h2, .section--green h3, .section--green h4 { color: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .55fr); gap: 44px; align-items: end; margin-bottom: 46px; }
.section-heading p { margin-bottom: .2rem; }
.section-heading--center { display: block; max-width: 780px; margin: 0 auto 46px; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .8rem 1.3rem;
  background: var(--green-900);
  color: var(--white);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(18,53,46,.18); }
.btn:focus-visible, .nav-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(223,130,100,.6); outline-offset: 3px; }
.btn--peach { background: var(--peach); color: #2c1711; }
.btn--peach:hover { background: #e6957c; }
.btn--light { background: var(--white); color: var(--green-950); }
.btn--outline { border-color: var(--line); background: transparent; color: var(--green-950); }
.btn--outline:hover { background: var(--white); }
.btn--text { min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--green-800); }
.btn--text:hover { transform: none; box-shadow: none; color: var(--peach-dark); }
.btn svg { width: 18px; height: 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.topbar { background: var(--green-950); color: rgba(255,255,255,.88); font-size: .87rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__links { display: flex; align-items: center; gap: 20px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--white); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,250,245,.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(18,53,46,.07); }
.header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__text { display: grid; line-height: 1; }
.logo__name { font-family: var(--serif); font-size: 1.38rem; font-weight: 700; letter-spacing: -.02em; }
.logo__tag { margin-top: 4px; color: var(--ink-soft); font-size: .64rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav__list { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.nav__link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 11px; border-radius: 999px; color: var(--ink); font-size: .93rem; font-weight: 700; text-decoration: none; }
.nav__link:hover, .nav__link[aria-current="page"] { background: var(--green-100); color: var(--green-900); }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--green-950); }
.nav-toggle svg { width: 22px; }

.hero { position: relative; overflow: hidden; padding: 80px 0 86px; background: var(--cream); }
.hero::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -14%;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(207,228,219,.52);
  filter: blur(1px);
}
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .82fr); gap: 70px; align-items: center; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { max-width: 810px; margin: 0 0 24px; font-family: var(--serif); font-size: clamp(3.3rem, 6vw, 6.3rem); line-height: .95; letter-spacing: -.05em; font-weight: 600; }
.hero__lead { max-width: 660px; margin-bottom: 30px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.7vw, 1.25rem); }
.hero__micro { display: flex; flex-wrap: wrap; gap: 16px 24px; margin: 25px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: .92rem; font-weight: 650; }
.hero__micro li { display: flex; align-items: center; gap: 8px; }
.hero__micro svg { width: 19px; color: var(--green-700); }
.hero__visual { position: relative; min-height: 620px; }
.hero__image { width: 100%; height: 620px; object-fit: cover; object-position: center; border-radius: 180px 180px 38px 38px; box-shadow: var(--shadow-md); }
.hero__badge { position: absolute; left: -48px; bottom: 54px; width: 210px; padding: 21px; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.hero__badge strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; }
.hero__badge span { color: var(--ink-soft); font-size: .82rem; }
.hero__sparkle { position: absolute; top: 32px; right: -24px; width: 74px; color: var(--peach); }
.hero--inner { padding: 74px 0 78px; }
.hero--inner .hero__grid { grid-template-columns: minmax(0, .95fr) minmax(380px, .78fr); }
.hero--inner h1 { font-size: clamp(3rem, 5vw, 5.4rem); }
.hero--inner .hero__visual { min-height: 500px; }
.hero--inner .hero__image { height: 500px; border-radius: var(--radius-lg); }
.hero--inner .hero__badge { bottom: 28px; }

.trustbar { position: relative; z-index: 3; margin-top: -25px; }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.trust-item { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 20px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 27px; height: 27px; flex: none; color: var(--green-700); }
.trust-item strong { display: block; font-size: .94rem; line-height: 1.25; }
.trust-item span { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .78rem; line-height: 1.35; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.service-card { position: relative; display: flex; min-height: 325px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; box-shadow: 0 1px 0 rgba(18,53,46,.03); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__image { width: 100%; height: 180px; object-fit: cover; }
.service-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.service-card__icon { position: absolute; top: 154px; right: 22px; display: grid; width: 54px; height: 54px; place-items: center; border: 5px solid var(--white); border-radius: 50%; background: var(--green-100); color: var(--green-800); }
.service-card__icon svg { width: 23px; height: 23px; }
.service-card p { color: var(--ink-soft); font-size: .92rem; }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--green-800); font-size: .88rem; font-weight: 800; }
.service-card__link svg { width: 16px; transition: transform .2s ease; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: 78px; align-items: center; }
.split--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
.split__media { position: relative; }
.split__image { width: 100%; min-height: 530px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.split__image--short { min-height: 420px; }
.split__note { position: absolute; right: -30px; bottom: 34px; max-width: 260px; padding: 21px 23px; border-radius: 18px; background: var(--peach); color: #301812; box-shadow: var(--shadow-md); font-family: var(--serif); font-size: 1.1rem; line-height: 1.3; }
.check-list { display: grid; gap: 13px; margin: 25px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check-list svg { width: 21px; height: 21px; flex: none; margin-top: 3px; color: var(--green-700); }
.check-list--2 { grid-template-columns: repeat(2,minmax(0,1fr)); }

.process { counter-reset: step; }
.process-card { position: relative; min-height: 250px; padding: 30px 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.process-card::after { counter-increment: step; content: "0" counter(step); position: absolute; right: 15px; bottom: -21px; color: var(--green-100); font-family: var(--serif); font-size: 7rem; font-weight: 700; line-height: 1; }
.process-card__icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 30px; border-radius: 16px; background: var(--green-100); color: var(--green-800); }
.process-card__icon svg { width: 23px; }
.process-card p { position: relative; z-index: 1; color: var(--ink-soft); font-size: .9rem; }
.process-card h3 { position: relative; z-index: 1; }

.price-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.price-card { position: relative; display: flex; min-height: 370px; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.price-card--featured { background: var(--green-950); color: var(--white); }
.price-card--featured h3 { color: var(--white); }
.price-card__tag { display: inline-flex; align-self: flex-start; margin-bottom: 26px; padding: 7px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-900); font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.price-card--featured .price-card__tag { background: rgba(255,255,255,.13); color: #c8eadb; }
.price-card__price { margin: 10px 0 6px; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.price-card__price small { font-family: var(--sans); font-size: .77rem; font-weight: 650; }
.price-card p { color: var(--ink-soft); font-size: .9rem; }
.price-card--featured p { color: rgba(255,255,255,.72); }
.price-card .btn { margin-top: auto; align-self: flex-start; }

.quote-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--green-950); color: var(--white); }
.quote-band::after { content: ""; position: absolute; top: -160px; right: -120px; width: 430px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.quote-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1fr); gap: 60px; align-items: start; padding: 64px; }
.quote-band h2 { color: var(--white); }
.quote-band .lead { color: rgba(255,255,255,.75); }
.quote-contact { display: grid; gap: 14px; margin-top: 30px; }
.quote-contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-weight: 750; text-decoration: none; }
.quote-contact svg { width: 21px; color: #a9d8c5; }

.form-card { padding: 30px; border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: var(--shadow-md); }
.form-card h3 { margin-bottom: 6px; }
.form-card__intro { margin-bottom: 22px; color: var(--ink-soft); font-size: .88rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .77rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 11px 13px; color: var(--ink); }
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #82948f; }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.form-note { color: var(--ink-soft); font-size: .72rem; line-height: 1.45; }
.form-status { display: none; margin-top: 15px; padding: 12px 14px; border-radius: 10px; background: var(--green-100); color: var(--green-950); font-size: .84rem; font-weight: 700; }
.form-status.is-visible { display: block; }

.breadcrumbs { padding: 18px 0 0; font-size: .77rem; color: var(--ink-soft); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #98a9a4; }
.breadcrumbs a { text-decoration: none; }

.quick-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.fact-card { display: flex; align-items: flex-start; gap: 14px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.fact-card svg { width: 24px; flex: none; color: var(--green-700); }
.fact-card strong { display: block; line-height: 1.25; }
.fact-card span { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .79rem; line-height: 1.45; }

.content-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.38fr); gap: 70px; align-items: start; }
.prose { max-width: 790px; }
.prose h2 { margin-top: 2.4rem; font-size: clamp(2rem,3.5vw,3.3rem); }
.prose h3 { margin-top: 1.7rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.aside-card { position: sticky; top: 116px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.aside-card__price { margin: 13px 0 5px; font-family: var(--serif); font-size: 2.1rem; font-weight: 700; }
.aside-card p { color: var(--ink-soft); font-size: .83rem; }
.aside-card .btn { width: 100%; margin-top: 12px; }

.included-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.included-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.included-card__icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 22px; border-radius: 15px; background: var(--green-100); color: var(--green-800); }
.included-card__icon svg { width: 22px; }
.included-card ul { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: .86rem; }
.included-card li { display: flex; gap: 8px; }
.included-card li::before { content: "•"; color: var(--peach-dark); font-weight: 900; }

.callout { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 36px; align-items: center; padding: 38px 42px; border-radius: var(--radius); background: var(--green-100); }
.callout h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 2rem; }
.callout p { margin: 0; color: var(--ink-soft); }
.callout--dark { background: var(--green-950); color: var(--white); }
.callout--dark h3 { color: var(--white); }
.callout--dark p { color: rgba(255,255,255,.72); }

.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--green-950); font-size: 1.03rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; display: grid; width: 34px; height: 34px; flex: none; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-900); font-size: 1.3rem; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__answer { max-width: 760px; padding: 0 50px 24px 0; color: var(--ink-soft); font-size: .93rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.price-table { width: 100%; border-collapse: collapse; min-width: 580px; }
.price-table caption { padding: 24px; text-align: left; color: var(--green-950); font-family: var(--serif); font-size: 1.5rem; font-weight: 700; }
.price-table th, .price-table td { padding: 15px 22px; border-top: 1px solid var(--line); text-align: left; }
.price-table th { background: var(--green-50); color: var(--green-950); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.price-table td { color: var(--ink-soft); font-size: .92rem; }
.price-table td:last-child { color: var(--green-900); font-weight: 800; }
.price-table__group { display: grid; gap: 26px; }
.price-note { padding: 19px 22px; border-left: 4px solid var(--peach); border-radius: 0 12px 12px 0; background: var(--cream); color: var(--ink-soft); font-size: .87rem; }

.contact-grid { display: grid; grid-template-columns: minmax(0,.72fr) minmax(430px,1fr); gap: 70px; align-items: start; }
.contact-list { display: grid; gap: 18px; margin: 30px 0; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; }
.contact-item__icon { display: grid; width: 48px; height: 48px; flex: none; place-items: center; border-radius: 15px; background: var(--green-100); color: var(--green-800); }
.contact-item__icon svg { width: 22px; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item a { color: var(--green-800); font-weight: 700; text-decoration: none; }
.contact-photo { width: 100%; height: 330px; object-fit: cover; border-radius: var(--radius); }

.stat-row { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.stat { padding: 26px; border-radius: var(--radius); background: var(--white); }
.stat strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 2rem; line-height: 1; }
.stat span { color: var(--ink-soft); font-size: .83rem; }

.notice { padding: 18px 20px; border: 1px solid rgba(189,98,72,.25); border-radius: 14px; background: #fff4ef; color: #704033; font-size: .86rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.tag-list a { display: inline-flex; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--green-800); font-size: .76rem; font-weight: 750; text-decoration: none; }

.site-footer { background: var(--green-950); color: rgba(255,255,255,.72); }
.footer__top { display: grid; grid-template-columns: minmax(260px,1.35fr) repeat(3,minmax(150px,.65fr)); gap: 55px; padding: 72px 0 56px; }
.site-footer .logo { color: var(--white); }
.site-footer .logo__tag { color: rgba(255,255,255,.58); }
.footer__brand p { max-width: 400px; margin-top: 22px; font-size: .9rem; }
.footer__title { margin: 0 0 17px; color: var(--white); font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; }
.footer__links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer__links a { color: rgba(255,255,255,.7); font-size: .86rem; text-decoration: none; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom a { color: inherit; }
.mobile-cta { display: none; }

.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.error-page strong { display: block; color: var(--green-200); font-family: var(--serif); font-size: 8rem; line-height: 1; }

@media (max-width: 1080px) {
  .nav__list { gap: 0; }
  .nav__link { padding-inline: 8px; font-size: .86rem; }
  .hero__grid { grid-template-columns: minmax(0,1fr) minmax(350px,.75fr); gap: 42px; }
  .hero__visual { min-height: 540px; }
  .hero__image { height: 540px; }
  .hero__badge { left: -22px; }
  .quote-band__inner { padding: 46px; gap: 40px; }
  .footer__top { grid-template-columns: minmax(260px,1.2fr) repeat(2,minmax(150px,.7fr)); }
  .footer__col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .topbar__inner { justify-content: center; }
  .topbar__message { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { position: fixed; inset: 122px 18px auto; display: none; max-height: calc(100vh - 145px); overflow-y: auto; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream-2); box-shadow: var(--shadow-md); }
  .nav.is-open { display: block; }
  .nav__list { display: grid; gap: 4px; }
  .nav__link { width: 100%; justify-content: flex-start; padding-inline: 15px; font-size: 1rem; }
  .nav > .btn { width: 100%; margin-top: 14px; }
  .hero { padding: 58px 0 70px; }
  .hero__grid, .hero--inner .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 800px; }
  .hero__visual, .hero--inner .hero__visual { min-height: 500px; }
  .hero__image, .hero--inner .hero__image { height: 500px; border-radius: 110px 110px 30px 30px; }
  .hero--inner .hero__image { border-radius: var(--radius-lg); }
  .hero__badge { left: 22px; }
  .trustbar__inner { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .grid--3, .included-grid, .price-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 42px; }
  .split--reverse .split__media { order: -1; }
  .split__image { min-height: 430px; }
  .split__note { right: 20px; }
  .quote-band__inner, .contact-grid { grid-template-columns: 1fr; }
  .quote-band__inner { padding: 42px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .aside-card { position: static; }
  .quick-facts, .stat-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 58px 0; }
  .section--sm { padding: 44px 0; }
  h2 { font-size: 2.35rem; }
  .header__inner { min-height: 72px; }
  .logo__mark { width: 37px; height: 37px; }
  .logo__name { font-size: 1.2rem; }
  .nav { top: 110px; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  .hero__visual, .hero--inner .hero__visual { min-height: 400px; }
  .hero__image, .hero--inner .hero__image { height: 400px; border-radius: 78px 78px 24px 24px; }
  .hero--inner .hero__image { border-radius: var(--radius); }
  .hero__badge { left: 14px; right: 14px; bottom: 14px; width: auto; }
  .hero__sparkle { right: 5px; }
  .trustbar { margin-top: -14px; }
  .trustbar__inner { grid-template-columns: 1fr; }
  .trust-item { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .grid--2, .grid--3, .grid--4, .included-grid, .price-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .split__image { min-height: 360px; }
  .split__note { position: static; max-width: none; margin: -24px 14px 0; }
  .check-list--2 { grid-template-columns: 1fr; }
  .quote-band { border-radius: 24px; }
  .quote-band__inner { padding: 32px 22px; }
  .form-card { padding: 23px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .callout { grid-template-columns: 1fr; padding: 30px 24px; }
  .callout .btn { justify-self: start; }
  .price-table th, .price-table td { padding: 13px 15px; }
  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; padding-top: 54px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; padding-bottom: 90px; }
  .mobile-cta { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 90; display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px; padding: 8px; border: 1px solid rgba(23,49,43,.12); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 15px 40px rgba(18,53,46,.22); backdrop-filter: blur(12px); }
  .mobile-cta .btn { min-height: 46px; padding-inline: .8rem; font-size: .84rem; }
}

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

/* Small icon sizing for utility areas */
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 14px; height: 14px; }
.hero__sparkle svg { width: 100%; height: auto; }

.btn, .topbar a { white-space: nowrap; }

/* WordPress block-theme compatibility */
.wp-site-blocks { padding: 0; }
.wp-site-blocks > * { margin-block-start: 0; }
.wp-block-post-content { margin: 0; }
.wp-block-group { margin-block-start: 0; margin-block-end: 0; }
.wp-block-html { margin: 0; }
.nozaria-hp { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.admin-bar .site-header.is-scrolled { top: 32px; }
@media (max-width:782px){ .admin-bar .site-header.is-scrolled { top:46px; } }
