/* ==========================================================================
   ADWOKAT EWA — site styles (shared between design preview & WP theme)
   --------------------------------------------------------------------------
   Tokens are the source of truth. WP theme uses the same CSS variables.
   ========================================================================== */

:root {
  /* Colors — pulled from existing pages (główna, o-mnie) */
  --color-gold:        #b59a6d;
  --color-gold-soft:   #c8b487;
  --color-gold-light:  #e3d3b3;
  --color-cream:       #fff5e9;
  --color-cream-soft:  #faeed9;
  --color-ink:         #1a1a1a;
  --color-ink-soft:    #4a4a4a;
  --color-ink-mute:    #6b6b6b;
  --color-line:        #d9c6a3;
  --color-line-soft:   #ebdcc0;
  --color-white:       #ffffff;
  --color-dark:        #1f1b16;

  /* Type */
  --font-heading: "Open Sans", -apple-system, system-ui, sans-serif;
  --font-body: "Lato", -apple-system, system-ui, sans-serif;

  /* Spacing */
  --container: 1100px;
  --gutter: 24px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadows */
  --shadow-soft: 0 18px 40px -22px rgba(60, 40, 10, 0.25);
}

/* Reset within the page-mockup scope so it doesn't leak into the canvas chrome */
.aw-page, .aw-page * {
  box-sizing: border-box;
}

.aw-page {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

:where(.aw-page) h1,
:where(.aw-page) h2,
:where(.aw-page) h3,
:where(.aw-page) h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: -0.01em;
  margin: 0;
}

.aw-page p { margin: 0 0 1em; }

/* ====================================================== HEADER */

.aw-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--color-line-soft);
  padding: 22px 0;
  font-family: var(--font-body);
}

.aw-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.aw-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--color-ink);
  text-decoration: none;
  line-height: 1.1;
  display: inline-flex;
  flex-direction: column;
}
.aw-logo small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--color-gold);
  margin-top: 4px;
  text-transform: uppercase;
}

.aw-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.aw-nav a {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 160ms ease;
}
.aw-nav a:hover,
.aw-nav a.is-active {
  color: var(--color-gold);
}
.aw-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--color-gold);
}

/* Dropdown */
.aw-nav__item { position: relative; }
.aw-nav__item--has-children > a:not(.is-active)::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: 2px;
  opacity: 0.7;
}
.aw-nav__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--color-line-soft);
  box-shadow: var(--shadow-soft);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 50;
}
.aw-nav__item--has-children:hover .aw-nav__menu,
.aw-nav__item--has-children.is-open .aw-nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.aw-nav__menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--color-line-soft);
}
.aw-nav__menu a:last-child { border-bottom: 0; }
.aw-nav__menu a:hover {
  background: var(--color-cream);
  color: var(--color-gold);
}

.aw-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.aw-social a {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  text-decoration: none;
}
.aw-social svg { width: 100%; height: 100%; fill: currentColor; }

/* ====================================================== HERO BANDS */

.aw-pagehero {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--color-cream) 100%);
  padding: 70px 0 80px;
  overflow: hidden;
}
.aw-pagehero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/decor-circles.png");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  pointer-events: none;
}
.aw-pagehero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.aw-pagehero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}
.aw-pagehero__title {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.aw-pagehero__title em {
  font-style: italic;
  color: var(--color-gold);
}
.aw-pagehero__sub {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-ink-soft);
  width: 100%;
  text-align: center;
}
.aw-pagehero__crumbs {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-ink-mute);
  text-transform: uppercase;
}
.aw-pagehero__crumbs a { color: inherit; text-decoration: none; }
.aw-pagehero__crumbs a:hover { color: var(--color-gold); }
.aw-pagehero__crumbs span { margin: 0 10px; color: var(--color-gold); }

/* Hero ornament — golden ring + small triangle accent like Macondo, but on-brand */
.aw-pagehero__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.aw-pagehero__ornament .ring {
  position: absolute;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0.4;
}
.aw-pagehero__ornament .ring--1 { width: 320px; height: 320px; top: -120px; left: -80px; }
.aw-pagehero__ornament .ring--2 { width: 220px; height: 220px; top: 60px; left: 70px; opacity: 0.25; }
.aw-pagehero__ornament .ring--3 { width: 380px; height: 380px; top: -90px; right: -130px; }
.aw-pagehero__ornament .ring--4 { width: 200px; height: 200px; bottom: -100px; right: 120px; opacity: 0.3; }

/* ====================================================== BUTTONS */

.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(90deg, #d5b896 0%, #e4cfb5 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
  font-family: var(--font-body);
}
.aw-btn:hover { background: linear-gradient(90deg, #c9a878 0%, #ddc4a0 100%); }
.aw-btn:active { transform: translateY(1px); }

/* alias zachowany dla kompatybilności — bazowy .aw-btn ma teraz ten sam styl */
.aw-btn--gradient { /* no-op */ }

.aw-btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.aw-btn--ghost:hover { background: var(--color-gold); color: #fff; }

.aw-btn--dark {
  background: var(--color-dark);
  color: #fff;
}
.aw-btn--dark:hover { background: #2e271e; }

/* ====================================================== SECTIONS */

.aw-section {
  padding: 90px 0;
  position: relative;
}
.aw-section--cream { background: var(--color-cream); }
.aw-section--soft  { background: var(--color-cream-soft); }
.aw-section--dark  { background: var(--color-dark); color: #fff; }

.aw-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.aw-section__head {
  text-align: center;
  margin-bottom: 56px;
}
.aw-section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.aw-section__title {
  font-size: 44px;
  line-height: 1.1;
}

/* Decorative circles bg (used on Zakres Usług on the home page too) */
.aw-section--circles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/decor-circles.png");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  pointer-events: none;
}

/* ====================================================== TWO-COL CONTENT (Usługa template) */

.aw-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.aw-twocol--reverse .aw-twocol__media { order: 2; }

.aw-twocol__media {
  position: relative;
}
.aw-twocol__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}
/* Wariant bez złotego boksu za zdjęciem — samo zdjęcie z zaokrągleniem i delikatnym cieniem */
.aw-twocol--noframe .aw-twocol__media::before { display: none; }
.aw-twocol--noframe .aw-twocol__media img { box-shadow: 0 18px 44px rgba(31, 27, 22, 0.16); }

/* Globalna regula — gdy obraz ma sztywny width, height musi byc auto zeby zachowac
   aspect ratio. Heroes nadpisuja to wlasnym object-fit:cover. */
.aw-page img { max-width: 100%; height: auto; }
.aw-home-hero__media img,
.aw-omnie-hero__right img { height: 100%; }
.aw-twocol__media::before {
  content: "";
  position: absolute;
  inset: -22px -22px 22px 22px;
  background: var(--color-gold-light);
  border-radius: var(--r-md);
  z-index: -1;
}
.aw-twocol--reverse .aw-twocol__media::before {
  inset: -22px 22px 22px -22px;
}

.aw-twocol__body h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.28;
  margin-bottom: 24px;
  color: var(--color-ink);
}
.aw-twocol__body h2 em {
  font-style: italic;
  color: var(--color-gold);
}
.aw-twocol__body p { color: var(--color-ink-soft); font-size: 16px; line-height: 1.7; }
.aw-twocol__body p + p { margin-top: 18px; }
.aw-twocol__body .aw-btn { margin-top: 28px; }

.aw-twocol__body .lead-in {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.aw-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.aw-checklist li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--color-ink-soft);
  line-height: 1.55;
}
.aw-checklist li strong {
  color: var(--color-ink);
  font-weight: 600;
}
.aw-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 22px; height: 22px;
  background: var(--color-gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ====================================================== DARK CTA STRIP */

.aw-cta-strip {
  background: var(--color-dark) url("../img/decor-circles.png") center / cover;
  background-blend-mode: luminosity;
  color: #fff;
  text-align: center;
  padding: 80px var(--gutter);
  position: relative;
}
.aw-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,27,22,0.92), rgba(31,27,22,0.88));
}
.aw-cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.aw-cta-strip__eyebrow {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.aw-cta-strip__title {
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 32px;
}

/* ====================================================== KONTAKT */

.aw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.aw-contact-cards {
  display: grid;
  gap: 18px;
}
.aw-contact-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--color-line-soft);
  border-radius: var(--r-md);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}
.aw-contact-card,
.aw-contact-card * { text-decoration: none; }
.aw-contact-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.aw-contact-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-cream);
  display: grid; place-items: center;
}
.aw-contact-card__icon img { width: 26px; height: 26px; }
.aw-contact-card__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.aw-contact-card__value {
  font-size: 16px;
  color: var(--color-ink);
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
}
.aw-contact-card__value small {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-ink-mute);
  margin-top: 2px;
}

.aw-hours {
  margin-top: 8px;
  background: var(--color-cream);
  border-radius: var(--r-md);
  padding: 24px 28px;
}
.aw-hours__title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 12px;
}
.aw-hours dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  margin: 0;
  font-size: 14.5px;
}
.aw-hours dt { color: var(--color-ink-soft); }
.aw-hours dd { margin: 0; color: var(--color-ink); font-weight: 600; }
.aw-hours dd.is-closed { color: var(--color-ink-mute); font-weight: 400; }

/* ====================================================== CONTACT FORM */

.aw-form {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(31, 27, 22, 0.06);
}

/* Reset stylowania gdy .aw-form jest aplikowany do <form> wewnatrz wrappera .aw-form
   (CF7 dodaje klase aw-form do tagu <form>, my mamy ten sam class na wrapperze).
   Nested .aw-form bez padding/shadow, zeby nie podwajac. */
.aw-form .aw-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.aw-form__title {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 8px;
}
.aw-form__lede {
  color: var(--color-ink-soft);
  margin-bottom: 28px;
  font-size: 15px;
}
.aw-form__field {
  position: relative;
  margin-bottom: 22px;
}
.aw-form__field label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 14px;
  color: var(--color-ink-mute);
  pointer-events: none;
  transition: transform 160ms ease, color 160ms ease, font-size 160ms ease;
  transform-origin: 0 0;
}
.aw-form__field input,
.aw-form__field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  padding: 14px 0 10px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  resize: none;
}
.aw-form__field textarea { min-height: 100px; }
.aw-form__field input:focus,
.aw-form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}
.aw-form__field.is-filled label,
.aw-form__field input:focus + label,
.aw-form__field textarea:focus + label,
.aw-form__field input:not(:placeholder-shown) + label,
.aw-form__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-18px) scale(0.78);
  color: var(--color-gold);
}
.aw-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.aw-form__rodo {
  font-size: 12px;
  color: var(--color-ink-mute);
  margin: 8px 0 22px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.aw-form__rodo input[type="checkbox"] {
  accent-color: var(--color-gold);
  margin-top: 3px;
}
.aw-form__submit { text-align: right; }

/* ====================================================== MAP */

.aw-map {
  position: relative;
  height: 360px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--color-cream);
  border: 1px solid var(--color-line-soft);
}
.aw-map__placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(181,154,109,0.08) 22px 24px),
    radial-gradient(circle at 60% 50%, rgba(181,154,109,0.18) 0 12%, transparent 13%),
    radial-gradient(circle at 25% 70%, rgba(181,154,109,0.14) 0 8%, transparent 9%),
    var(--color-cream);
}
.aw-map__pin {
  position: absolute;
  left: 58%; top: 48%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aw-map__pin::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  margin-top: -2px;
}
.aw-map__card {
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--color-line-soft);
  white-space: nowrap;
}
.aw-map__card span { color: var(--color-gold); margin-right: 6px; }

/* ====================================================== FAQ */

.aw-faq { display: grid; gap: 12px; }
.aw-faq__item {
  background: #fff;
  border: 1px solid var(--color-line-soft);
  border-radius: var(--r-md);
  padding: 22px 26px;
  transition: border-color 160ms ease;
}
.aw-faq__item.is-open { border-color: var(--color-gold); }
.aw-faq__q {
  font-family: var(--font-heading);
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  align-items: center;
}
.aw-faq__plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.aw-faq__plus svg {
  width: 12px; height: 12px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
.aw-faq__item.is-open .aw-faq__plus {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: #fff;
}
.aw-faq__a {
  font-size: 14.5px;
  color: var(--color-ink-soft);
  margin-top: 14px;
  display: none;
}
.aw-faq__item.is-open .aw-faq__a { display: block; }

/* ====================================================== USLUGA — quick navigation list */

.aw-services-rail {
  background: var(--color-cream);
  border-radius: var(--r-md);
  padding: 28px 26px;
  position: sticky;
  top: 24px;
}
.aw-services-rail__title {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.aw-services-rail__list { list-style: none; padding: 0; margin: 0; }
.aw-services-rail__list li {
  border-bottom: 1px solid var(--color-line-soft);
}
.aw-services-rail__list li:last-child { border-bottom: 0; }
.aw-services-rail__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 14px;
  color: var(--color-ink);
  text-decoration: none;
  transition: color 160ms ease;
}
.aw-services-rail__list a::after {
  content: "→";
  color: var(--color-gold);
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}
.aw-services-rail__list a:hover { color: var(--color-gold); }
.aw-services-rail__list a:hover::after { opacity: 1; transform: translateX(2px); }
.aw-services-rail__list li.is-active a { color: var(--color-gold); font-weight: 600; }
.aw-services-rail__list li.is-active a::after { opacity: 1; }

/* ====================================================== FOOTER */

.aw-footer {
  background: var(--color-cream);
  padding: 56px 0 0;
}
.aw-footer__row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.aw-footer__row > div {
  display: flex; gap: 18px; align-items: center;
  justify-content: center;
}
.aw-footer__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.aw-footer__icon img { width: 100%; height: 100%; object-fit: contain; }
.aw-footer__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2px;
}
.aw-footer__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
}
.aw-footer__bottom {
  border-top: 1px solid var(--color-line-soft);
  padding: 18px var(--gutter);
  text-align: center;
  font-size: 12px;
  color: var(--color-ink-mute);
}
.aw-footer__bottom a { color: var(--color-gold); text-decoration: none; }

/* ====================================================== UTILITY */

.aw-stripe-top {
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}

/* ====================================================== STRONA GŁÓWNA — HERO */

.aw-home-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  min-height: 520px;
  background: var(--color-gold);
  color: #fff;
  position: relative;
}
.aw-home-hero__copy {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aw-home-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.aw-home-hero__title {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.aw-home-hero__title em {
  font-style: italic;
  color: var(--color-cream);
}
.aw-home-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
  max-width: 440px;
  line-height: 1.55;
}
.aw-home-hero__media {
  position: relative;
  overflow: hidden;
}
.aw-home-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================================================== HOME — FULL-BLEED BANNER (z designu) */

.aw-home-banner {
  position: relative;
  min-height: 720px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.aw-home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.aw-home-banner__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px var(--gutter);
  text-align: right;
}
.aw-home-banner__copy {
  max-width: 620px;
  margin-left: auto;
  margin-right: 0;
}
.aw-home-banner__title {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
}
.aw-home-banner__title em { font-style: italic; color: var(--color-gold-light); }
.aw-page .aw-home-banner__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px auto;
  max-width: 540px;
}

/* ====================================================== HOME — 3 ZLOTE KAFELKI (pod hero) */

.aw-features {
  position: relative;
  z-index: 5;
  margin-top: -150px;
  padding-bottom: 72px;
}
.aw-features__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.aw-feature {
  background: var(--color-gold-light);
  color: #fff;
  padding: 42px 30px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(31, 27, 22, 0.18);
}
/* środkowy kafelek: tylko ciemniejszy, ten sam rozmiar (jak w designie) */
.aw-feature:nth-child(2) {
  background: var(--color-gold);
}
.aw-feature__icon {
  margin: 0 auto 18px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.aw-feature__icon img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.aw-feature__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}
.aw-feature__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

/* ====================================================== HOME — NASZ BLOG */

/* Tytuł sekcji „Nasz blog" — do lewej, złoty, pogrubiony sans (jak „Zakres usług") */
.aw-section__head--left { text-align: left; }
.aw-section--blog .aw-section__title {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--color-gold);
  font-size: 44px;
  line-height: 1.1;
}

.aw-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.aw-blog-featured__copy {
  display: flex;
  flex-direction: column;
}
.aw-blog-featured__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 28px;
}
.aw-blog-featured__title a {
  color: var(--color-ink);
  text-decoration: none;
}
.aw-blog-featured__title a:hover { color: var(--color-gold); }
.aw-blog-featured__excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  margin-bottom: 0;
}
.aw-blog-featured .aw-btn {
  align-self: center;
  margin-top: 40px;
}
.aw-blog-featured__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  display: block;
}

.aw-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
/* pionowe linie między kartami (jak w designie) */
.aw-blog-card {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}
.aw-blog-card:first-child { padding-left: 0; }
.aw-blog-card:last-child { padding-right: 0; }
.aw-blog-card + .aw-blog-card { border-left: 1px solid var(--color-line); }
.aw-blog-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.aw-blog-card__title a {
  color: var(--color-ink);
  text-decoration: none;
}
.aw-blog-card__title a:hover { color: var(--color-gold); }
.aw-blog-card__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-ink-soft);
  margin-bottom: 16px;
}
.aw-blog-card__more {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-end;
}
.aw-blog-card__more:hover { color: var(--color-ink); }

/* ====================================================== STRONA GŁÓWNA — SERVICES GRID */

/* Tytuł sekcji „Zakres usług" — duży, pogrubiony, złoty (jak w designie) */
.aw-section--services .aw-section__title {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--color-gold);
  font-size: 48px;
  line-height: 1.1;
}

.aw-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.aw-service-tile {
  background: var(--color-gold);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 36px rgba(31, 27, 22, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.aw-service-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(31, 27, 22, 0.24);
}
.aw-service-tile__icon {
  width: 92px; height: 92px;
  margin-bottom: 18px;
}
.aw-service-tile__icon img { width: 100%; height: 100%; display: block; }
.aw-service-tile h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}
.aw-service-tile p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 22px;
}
/* ciemny przycisk „Więcej" — mniejszy niż globalny .aw-btn, dopasowany do kafla */
.aw-service-tile__more {
  margin-top: auto;
  padding: 12px 30px;
  font-size: 13px;
  letter-spacing: 0.14em;
  border-radius: 999px;
}

/* ====================================================== O MNIE — SPLIT HERO */

.aw-omnie-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--color-gold);
  color: #fff;
  min-height: 460px;
}
.aw-omnie-hero__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 56px;
}
.aw-omnie-hero__copy {
  text-align: center;
}
.aw-omnie-hero__intro {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2px;
  color: #fff;
}
.aw-omnie-hero__name {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 2px;
  color: #fff;
}
.aw-omnie-hero__tag {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.aw-omnie-hero__right { overflow: hidden; }
.aw-omnie-hero__right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================================================== O MNIE — BODY TEXT */

.aw-omnie-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  margin: 50px 0 38px;
  color: var(--color-ink);
}
.aw-omnie-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-ink-soft);
  margin-bottom: 20px;
}
.aw-omnie-body strong { color: var(--color-ink); font-weight: 700; }
/* Pierwszy akapit bio = tytuł sekcji (pogrubiony, kursywa, szeryfowy) */
.aw-omnie-body--intro {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--color-ink);
  margin-bottom: 30px;
}
.aw-omnie-body--intro strong { font-weight: 700; }
/* Blok cytatu: zdjęcie + złoty box (tło tylko w boksie z tekstem, nie na całej sekcji) */
.aw-omnie-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.aw-omnie-quote-grid__media { display: flex; }
.aw-omnie-quote-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aw-omnie-quote-box {
  background: #d4bd9f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 44px;
}
.aw-omnie-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.3;
  color: var(--color-ink);
  margin: 0;
  text-align: center;
}
.aw-omnie-personal {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: var(--color-ink);
  margin: 0;
}


/* ==========================================================================
   BLOG ARCHIVE — listing wpisow (.aw-post-card, .aw-blog-feature, .aw-blog-filters)
   ========================================================================== */

.aw-post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(31, 27, 22, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.aw-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(31, 27, 22, 0.12);
}
.aw-post-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  background: #f4ece0;
}
.aw-post-card__media img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.aw-post-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.aw-post-card:hover .aw-post-card__media img { transform: scale(1.04); }
.aw-post-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--color-gold);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
}
.aw-post-card__body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.aw-post-card__meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  margin-bottom: 10px;
}
.aw-post-card__meta span + span::before {
  content: "·";
  margin: 0 8px;
  color: var(--color-gold);
}
.aw-post-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.aw-post-card p {
  color: var(--color-ink-soft);
  font-size: 14.5px;
  margin: 0 0 18px;
  line-height: 1.55;
}
.aw-post-card__more {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}

/* Feature card — first post on archive */
.aw-blog-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
  box-shadow: 0 4px 20px rgba(31, 27, 22, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.aw-blog-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(31, 27, 22, 0.12);
}
.aw-blog-feature__media {
  aspect-ratio: auto;
  min-height: 360px;
  position: relative;
  background: #f4ece0;
}
.aw-blog-feature__media img {
  position: absolute; inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.aw-blog-feature__body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aw-blog-feature__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.aw-blog-feature h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.aw-blog-feature p {
  color: var(--color-ink-soft);
  font-size: 16px;
  margin: 0 0 22px;
  line-height: 1.6;
}

/* Category filter pills */
.aw-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.aw-blog-filters a {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  color: var(--color-ink-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.aw-blog-filters a:hover { color: var(--color-gold); border-color: var(--color-gold); }
.aw-blog-filters a.is-active {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}

/* Pagination */
.aw-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.aw-pagination a, .aw-pagination span {
  min-width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink-soft);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.aw-pagination a:hover { background: var(--color-cream); color: var(--color-gold); }
.aw-pagination .current {
  background: var(--color-gold);
  color: #fff;
}
.aw-pagination .prev,
.aw-pagination .next {
  width: auto; padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink);
}

/* ==========================================================================
   SINGLE POST — szczegóły wpisu (.aw-post__*)
   ========================================================================== */
.aw-post {
  max-width: 760px;
  margin: 0 auto;
}
.aw-post__hero {
  text-align: center;
  padding: 70px 0 40px;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.aw-post__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/decor-circles.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}
.aw-post__hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.aw-post__cat {
  display: inline-block;
  background: var(--color-gold);
  color: #fff !important;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-decoration: none;
}
.aw-post__title {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.aw-post__meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.aw-post__meta-dot {
  width: 4px; height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
}

.aw-post__feature {
  max-width: 1100px;
  margin: -40px auto 0;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.aw-post__feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
}

.aw-post__body {
  padding: 60px 0 80px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-ink);
}
.aw-post__body p { margin: 0 0 1.2em; }
.aw-post__body h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.2;
  margin: 1.8em 0 0.6em;
  letter-spacing: -0.005em;
}
.aw-post__body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 1.6em 0 0.5em;
}
.aw-post__body blockquote {
  margin: 1.8em 0;
  padding: 18px 28px;
  border-left: 3px solid var(--color-gold);
  background: var(--color-cream);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--color-ink);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.aw-post__body ul, .aw-post__body ol {
  padding-left: 22px;
  margin: 0 0 1.2em;
}
.aw-post__body ul li, .aw-post__body ol li { margin-bottom: 8px; }
.aw-post__body a {
  color: var(--color-gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.aw-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  margin: 1.5em 0;
}

.aw-post__author {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 28px 30px;
  background: var(--color-cream);
  border-radius: var(--r-md);
  margin: 40px 0 0;
  align-items: center;
}
.aw-post__author-img {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-gold);
}
.aw-post__author-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aw-post__author-name {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 4px;
}
.aw-post__author-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.aw-post__author-bio {
  font-size: 14.5px;
  color: var(--color-ink-soft);
  line-height: 1.55;
  margin: 0;
}

.aw-post__share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line-soft);
}
.aw-post__share-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-ink-mute);
  font-weight: 600;
}
.aw-post__share-list {
  display: flex;
  gap: 8px;
}
.aw-post__share-list a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-gold);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.aw-post__share-list a:hover { background: var(--color-gold); color: #fff; }
.aw-post__share-list svg { width: 14px; height: 14px; fill: currentColor; }

/* ==========================================================================
   MOBILE BREAKPOINTY
   ========================================================================== */

/* Hamburger button — desktop hidden, mobile shown */
.aw-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.aw-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-ink);
  transition: transform 200ms ease, opacity 200ms ease;
}
.aw-menu-open .aw-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.aw-menu-open .aw-burger span:nth-child(2) { opacity: 0; }
.aw-menu-open .aw-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ====== ≤ 960px — tablet / large mobile ====== */
@media (max-width: 960px) {
  :root { --container: 720px; }

  /* Header collapse — hamburger appears */
  .aw-header__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .aw-burger { display: inline-flex; }
  .aw-social { display: none; }

  .aw-nav {
    position: fixed;
    top: 0; right: 0;
    width: 80vw; max-width: 360px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 28px 28px;
    transform: translateX(100%);
    transition: transform 280ms ease;
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.2);
    z-index: 100;
    overflow-y: auto;
    display: flex;
  }
  .aw-menu-open .aw-nav { transform: translateX(0); }
  .aw-nav > a, .aw-nav__item > a {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line-soft);
    text-align: left;
    display: block;
  }
  .aw-nav a.is-active::after { display: none; }

  /* Dropdown Usługi — inline accordion */
  .aw-nav__menu {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
    width: 100%;
    min-width: 0;
  }
  .aw-nav__item--has-children.is-open .aw-nav__menu { max-height: 600px; }
  .aw-nav__menu a {
    padding: 10px 16px;
    border-bottom: 0;
    color: var(--color-ink-soft);
    font-size: 13px;
    display: block;
  }
  .aw-nav__item--has-children > a::after { transition: transform 200ms ease; }
  .aw-nav__item--has-children.is-open > a::after { transform: rotate(180deg); }

  /* Section spacing */
  .aw-section { padding: 64px 0; }
  .aw-section__title { font-size: 36px; }
  .aw-pagehero { padding: 56px 0 64px; }
  .aw-pagehero__title { font-size: 48px; }

  /* Two-column → single column */
  .aw-twocol,
  .aw-twocol--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .aw-twocol--reverse .aw-twocol__media { order: 0; }
  .aw-twocol__media::before { display: none; }
  .aw-twocol__body h2 { font-size: 30px; }

  /* Contact grid 1 col */
  .aw-contact-grid { grid-template-columns: 1fr !important; gap: 40px; }

  /* Home hero (split-old) stack */
  .aw-home-hero { grid-template-columns: 1fr; min-height: 0; }
  .aw-home-hero__copy { padding: 56px 28px; }
  .aw-home-hero__title { font-size: 46px; }
  .aw-home-hero__media img { height: 360px; object-position: center top; }

  /* Home banner (new full-bleed) */
  .aw-home-banner { min-height: 420px; }
  .aw-home-banner__title { font-size: 40px; }
  .aw-home-banner__sub { font-size: 15.5px; }

  /* 3 features kafelki: 1 col, no negative margin */
  .aw-features { margin-top: 24px; padding-bottom: 40px; }
  .aw-features__inner { grid-template-columns: 1fr; gap: 16px; align-items: stretch; }

  /* Blog featured (home page section) stack */
  .aw-blog-featured { grid-template-columns: 1fr; gap: 32px; }
  .aw-blog-grid { grid-template-columns: 1fr; gap: 28px; }
  /* karty w 1 kolumnie: zamiast pionowych linii — górna linia */
  .aw-blog-card { padding: 24px 0 0; }
  .aw-blog-card + .aw-blog-card { border-left: 0; border-top: 1px solid var(--color-line); }

  /* Blog archive feature card stack */
  .aw-blog-feature { grid-template-columns: 1fr; }
  .aw-blog-feature__media { min-height: 240px; }
  .aw-blog-feature__body { padding: 32px 28px; }
  .aw-blog-feature h2 { font-size: 28px; }

  /* O mnie hero stack */
  .aw-omnie-hero { grid-template-columns: 1fr; }
  .aw-omnie-hero__left { padding: 48px 28px; }
  .aw-omnie-hero__name { font-size: 38px; }
  .aw-omnie-hero__right img { height: 380px; object-position: center top; }

  /* Quote band: stack — zdjęcie wyśrodkowane + odstęp do boksu (tylko mobile) */
  .aw-omnie-quote-grid { grid-template-columns: 1fr; gap: 24px; }
  .aw-omnie-quote-grid__media { justify-content: center; }
  .aw-omnie-quote-grid__media img {
    width: auto;
    height: auto;
    max-width: 340px;
    max-height: 420px;
    border-radius: 12px;
  }
  .aw-omnie-quote-box { padding: 40px 32px; }
  .aw-omnie-quote { font-size: 28px; text-align: center; }

  /* Services grid: 4 → 2 kolumny na tablecie */
  .aw-services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .aw-section--services .aw-section__title { font-size: 40px; }

  /* Values dark band 1 col */
  .aw-section--dark .aw-section__inner > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Form rows stack */
  .aw-form__row { grid-template-columns: 1fr; gap: 0; }
  .aw-form__submit { text-align: center; }

  /* Inline-grid form sections (Strona główna + O mnie form, kontakt) */
  .aw-section [style*="grid-template-columns:1fr 1.2fr"],
  .aw-section [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Footer */
  .aw-footer__row { grid-template-columns: 1fr; gap: 24px; }
  .aw-footer__row > div { justify-content: flex-start; }
}

/* ====== ≤ 760px — phone ====== */
@media (max-width: 760px) {
  :root { --container: 100%; --gutter: 20px; }

  .aw-header { padding: 16px 0; }
  .aw-header__inner { gap: 12px; }
  .aw-logo { font-size: 18px; }
  .aw-logo small { font-size: 9px; }

  .aw-section { padding: 56px 0; }
  .aw-section__head { margin-bottom: 36px; }
  .aw-section__title { font-size: 30px; line-height: 1.15; }
  .aw-section__eyebrow { font-size: 10px; letter-spacing: 0.3em; }

  .aw-pagehero { padding: 48px 0 56px; }
  .aw-pagehero__title { font-size: 36px; }
  .aw-pagehero__sub { font-size: 15px; }
  .aw-pagehero__ornament .ring--1 { width: 220px; height: 220px; }
  .aw-pagehero__ornament .ring--2 { display: none; }
  .aw-pagehero__ornament .ring--3 { width: 220px; height: 220px; }
  .aw-pagehero__ornament .ring--4 { display: none; }

  .aw-home-banner { min-height: 380px; }
  .aw-home-banner__title { font-size: 32px; }
  .aw-home-banner__sub { font-size: 14.5px; }
  .aw-home-banner__overlay { padding: 40px var(--gutter); }

  .aw-home-hero__title { font-size: 36px; }
  .aw-home-hero__sub { font-size: 15px; }
  .aw-home-hero__copy { padding: 48px 20px; }

  .aw-omnie-hero__name { font-size: 32px; }
  .aw-omnie-hero__intro,
  .aw-omnie-hero__tag { font-size: 18px; }

  .aw-omnie-lead { font-size: 18px; margin: 36px 0 24px; }
  .aw-omnie-quote { font-size: 22px; line-height: 1.35; }
  .aw-omnie-personal { font-size: 20px; }

  /* Twocol body */
  .aw-twocol__body h2 { font-size: 26px; }
  .aw-checklist li { padding-left: 32px; font-size: 14px; }

  /* CTA strip */
  .aw-cta-strip { padding: 56px 20px; }
  .aw-cta-strip__title { font-size: 26px; }

  /* Service tiles: 1 kolumna na telefonie */
  .aw-services-grid { grid-template-columns: 1fr; }
  .aw-service-tile { padding: 28px 24px; }
  .aw-service-tile h3 { font-size: 15px; }

  /* Contact card */
  .aw-contact-card { grid-template-columns: 48px 1fr; gap: 14px; padding: 18px 18px; }
  .aw-contact-card__icon { width: 44px; height: 44px; }
  .aw-contact-card__icon img { width: 22px; height: 22px; }

  /* Hours */
  .aw-hours { padding: 20px 22px; }

  /* FAQ */
  .aw-faq__item { padding: 18px 20px; }
  .aw-faq__q { font-size: 17px; gap: 14px; }

  /* Form */
  .aw-form { padding: 24px; }
  .aw-form__title { font-size: 26px; }

  /* CTA buttons */
  .aw-btn { padding: 14px 28px; font-size: 13px; }

  /* Blog featured title */
  .aw-blog-featured__title { font-size: 26px; }

  /* Single post mobile */
  .aw-post__hero { padding: 52px 0 32px; }
  .aw-post__title { font-size: 32px; }
  .aw-post__feature { margin-top: -28px; }
  .aw-post__body { font-size: 16px; padding: 40px 0 56px; }
  .aw-post__body h2 { font-size: 26px; }
  .aw-post__body h3 { font-size: 20px; }
  .aw-post__body blockquote { font-size: 18px; padding: 14px 22px; }
  .aw-post__author { grid-template-columns: 64px 1fr; gap: 16px; padding: 22px; }
  .aw-post__author-img { width: 64px; height: 64px; }
  .aw-post__author-name { font-size: 19px; }
  .aw-post__meta {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  /* Footer */
  .aw-footer { padding: 40px 0 0; }
  .aw-footer__row { padding-bottom: 32px; }
}

/* ====== ≤ 480px — small phone ====== */
@media (max-width: 480px) {
  .aw-pagehero__title { font-size: 32px; }
  .aw-section__title { font-size: 26px; }
  .aw-section--services .aw-section__title { font-size: 32px; }
  .aw-home-banner__title { font-size: 28px; }
  .aw-home-hero__title { font-size: 32px; }
  .aw-omnie-hero__name { font-size: 28px; }
  .aw-section { padding: 48px 0; }
  .aw-pagehero { padding: 40px 0 48px; }
  .aw-pagehero__crumbs { font-size: 11px; letter-spacing: 0.14em; }
  .aw-cta-strip__title { font-size: 22px; }
  .aw-form { padding: 20px; }
  .aw-feature, .aw-feature:nth-child(2) { padding: 24px 20px; }
}

/* ==========================================================================
   EJ-FORM — wlasny formularz kontaktowy (underline style z designu)
   ========================================================================== */

.ej-form {
  width: 100%;
}
.ej-form__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.ej-form__lede {
  font-size: 15px;
  color: var(--color-ink-soft);
  margin-bottom: 28px;
}
.ej-form__field {
  margin-bottom: 18px;
  position: relative;
}
.ej-form__field label {
  display: block;
  font-size: 14px;
  color: var(--color-ink-mute);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 400;
}
.ej-form__field input,
.ej-form__field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  resize: vertical;
  transition: border-color 160ms ease;
  outline: none;
  box-shadow: none;
}
.ej-form__field textarea { min-height: 80px; resize: vertical; }
.ej-form__field input:focus,
.ej-form__field textarea:focus {
  border-color: var(--color-gold);
}
.ej-form__hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.ej-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
/* Przycisk formularza — globalny złoty gradient (jak .aw-btn) */
.ej-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #d5b896 0%, #e4cfb5 100%);
  border: 0;
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.ej-form__btn:hover {
  background: linear-gradient(90deg, #c9a878 0%, #ddc4a0 100%);
}
.ej-form__btn:active { transform: translateY(1px); }
.ej-form__btn:disabled {
  opacity: 0.5;
  cursor: wait;
}
.ej-form__spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid var(--color-gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: ej-spin 700ms linear infinite;
}
.ej-form.is-busy .ej-form__spinner { display: inline-block; }
@keyframes ej-spin { to { transform: rotate(360deg); } }

.ej-form__status {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  min-height: 1em;
}
.ej-form__status.is-success { color: #2d7a3e; }
.ej-form__status.is-error { color: #b32d2e; }

/* W kontekście strony /kontakt/ formularz wewnątrz .aw-form (zachowanie wstecznej kompatybilności CF7) */
.aw-form .ej-form__title { margin-top: 0; }

/* ==========================================================================
   Contact Form 7 — dopasowanie do stylu .aw-form (zachowane jako fallback)
   ========================================================================== */
.aw-form .wpcf7 p { margin: 0 0 14px; }
.aw-form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not(.wpcf7-acceptance):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-list-item) {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-line-soft, #e8e2d5);
    border-radius: 4px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-ink, #1f1b16);
    transition: border-color 160ms ease;
}
.aw-form .wpcf7-acceptance,
.aw-form .wpcf7-checkbox,
.aw-form .wpcf7-radio {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
}
.aw-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-gold);
}
.aw-form .wpcf7-textarea { min-height: 120px; resize: vertical; }
.aw-form .wpcf7-submit {
    display: inline-block;
    background: var(--color-gold);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease;
}
.aw-form .wpcf7-submit:hover {
    background: #9d8358;
    transform: translateY(-1px);
}
.aw-form .wpcf7-acceptance label,
.aw-form .wpcf7-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--color-ink-soft, #5c574e);
    line-height: 1.5;
    cursor: pointer;
}
.aw-form .wpcf7-list-item { display: block !important; margin: 0 !important; }
.aw-form .wpcf7-not-valid-tip { color: #b32d2e; font-size: 12px; margin-top: 4px; }
.aw-form .wpcf7-response-output { margin: 16px 0 0; padding: 12px 16px; border-radius: 4px; }
