/*
Theme Name: Natura Dental Studio
Description: Motyw premium wellness dla demo gabinetu Natura Dental Studio (DentSmart). Czysty PHP/CSS, design zielony/botaniczny.
Version: 1.0
Author: DentSmart
*/

/* ═══════════════════════════════════════════
   TOKENY DESIGNU — z Claude Design handoff
   ═══════════════════════════════════════════ */
:root {
  /* Kolory — zielenie */
  --forest:      #1B4332;
  --sage:        #52796F;
  --sage-light:  #74A898;
  --mint:        #95D5B2;
  --mint-soft:   #D8F3DC;
  /* Neutralne — ciepłe */
  --cream:       #FAF7F2;
  --sand:        #E8DCC8;
  --sand-dark:   #C4B49A;
  --gold:        #B89B6E;
  --text:        #1F2D26;
  --text-muted:  #6B7A6E;
  --white:       #FFFFFF;

  /* Aliasy semantyczne */
  --page-bg:        var(--cream);
  --surface-card:   var(--white);
  --border-card:    var(--sand);
  --border-input:   var(--sand-dark);

  /* Typografia */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', 'DM Sans', 'Inter', -apple-system, sans-serif;

  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;

  --leading-tight: 1.15;
  --leading-body:  1.75;
  --tracking-heading: -0.01em;

  /* Radius */
  --radius-sm:    4px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;
  --radius-button: 8px;

  /* Cienie — tinted forest, nigdy szare */
  --shadow-sm: 0 1px 4px rgba(27,67,50,0.06);
  --shadow-md: 0 4px 20px rgba(27,67,50,0.08);
  --shadow-lg: 0 12px 40px rgba(27,67,50,0.10);
  --shadow-xl: 0 24px 64px rgba(27,67,50,0.12);

  --ease-standard: 0.25s ease;
  --ease-card: 0.3s ease;

  --container-max: 1140px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: var(--weight-light);
  color: var(--text);
  background: var(--page-bg);
  font-size: 16px;
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--sage); text-decoration: none; transition: color var(--ease-standard); }
a:hover { color: var(--forest); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--mint); color: var(--forest); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  color: var(--forest);
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-tight);
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.nt-container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.nt-section { padding: 96px 0; }
.nt-section--cream    { background: var(--cream); }
.nt-section--featured { background: var(--mint-soft); }
.nt-section--dark     { background: var(--forest); }
.nt-section--sage     { background: var(--sage); }

.nt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.nt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.nt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }

/* ═══════════════════════════════════════════
   SECTION LABEL (eyebrow)
   ═══════════════════════════════════════════ */
.nt-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.nt-label__line { display: block; width: 32px; height: 2px; background: var(--mint); flex-shrink: 0; }
.nt-label__text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.nt-section--dark .nt-label__text,
.nt-section--sage .nt-label__text { color: var(--mint); }
.nt-label--center { justify-content: center; }

/* ═══════════════════════════════════════════
   TYPOGRAFIA SEKCJI
   ═══════════════════════════════════════════ */
.nt-h1 { font-style: italic; font-size: 4rem; line-height: 1.1; color: var(--forest); }
.nt-h2 { font-style: italic; font-size: 2.25rem; line-height: 1.2; color: var(--forest); }
.nt-h2--lg { font-size: 3rem; line-height: 1.15; }
.nt-lead { font-weight: var(--weight-light); font-size: 1.125rem; line-height: 1.75; color: var(--text-muted); }
.nt-body { font-weight: var(--weight-light); font-size: 1.0625rem; line-height: 1.75; color: var(--text); }

/* ═══════════════════════════════════════════
   PRZYCISKI
   ═══════════════════════════════════════════ */
.nt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-button);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  padding: 16px 36px;
  font-size: 0.95rem;
  transition: background var(--ease-standard), transform var(--ease-standard), color var(--ease-standard);
}
.nt-btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.nt-btn--lg { padding: 19px 44px; font-size: 1.05rem; }
.nt-btn--primary { background: var(--sage); color: var(--white); }
.nt-btn--primary:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); }
.nt-btn--emphasis { background: var(--forest); color: var(--cream); }
.nt-btn--emphasis:hover { background: var(--sage); color: var(--cream); transform: translateY(-1px); }
.nt-btn--secondary { background: transparent; border-color: var(--sage); color: var(--sage); }
.nt-btn--secondary:hover { background: var(--mint-soft); color: var(--sage); }
.nt-btn--full { width: 100%; }
.nt-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nt-nav {
  position: sticky; top: 0; z-index: 50;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 32px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
}
.nt-nav__brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: var(--weight-semibold);
  font-size: 1.5rem;
  color: var(--forest);
  letter-spacing: var(--tracking-heading);
  white-space: nowrap;
}
.nt-nav__links { display: flex; align-items: center; gap: 32px; }
.nt-nav__links a {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 0.95rem;
  color: var(--text);
}
.nt-nav__links a:hover, .nt-nav__links a.active { color: var(--sage); }
.nt-nav__right { display: flex; align-items: center; gap: 16px; }
.nt-hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--forest); padding: 4px; }
.nt-hamburger svg { width: 26px; height: 26px; }
.nt-mobile-menu { display: none; }

/* ═══════════════════════════════════════════
   BOTANICAL BRANCH (scroll storytelling)
   ═══════════════════════════════════════════ */
#nt-branch {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, 0);
  height: 100vh; width: min(340px, 42vw);
  z-index: 2; color: var(--sage); opacity: 0.34;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.nt-hero { position: relative; background: var(--cream); overflow: hidden; }
.nt-hero__motif {
  position: absolute; right: -160px; top: -70px;
  opacity: 0.5; pointer-events: none; will-change: transform;
}
.nt-hero__inner { max-width: var(--container-max); margin: 0 auto; padding: 132px 32px 112px; position: relative; }
.nt-hero__content { max-width: 660px; }
.nt-hero h1 { margin: 18px 0 24px; }
.nt-hero__lead { margin: 0 0 38px; max-width: 520px; }
.nt-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════ */
.nt-trust {
  background: var(--mint-soft);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.nt-trust__inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 34px 32px;
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.nt-trust__item { display: flex; align-items: center; gap: 14px; }
.nt-trust__item span {
  font-family: var(--font-body); font-weight: var(--weight-medium);
  font-size: 0.95rem; color: var(--forest);
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.nt-about__grid { align-items: center; gap: 72px; }
.nt-about h2 { margin: 16px 0 24px; }
.nt-about p { margin: 0 0 18px; }
.nt-about__quote {
  margin: 20px 0 4px; padding: 20px 0 4px 22px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-heading); font-style: italic;
  font-weight: var(--weight-semibold); font-size: 1.35rem;
  line-height: 1.4; color: var(--forest);
}
.nt-about__media {
  position: relative; height: 420px;
  border-radius: var(--radius-lg);
  background: var(--mint-soft); border: 1px solid var(--sand);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
}
.nt-about__media span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════
   SECTION HEADER (center)
   ═══════════════════════════════════════════ */
.nt-section-head { text-align: center; margin-bottom: 52px; display: flex; flex-direction: column; align-items: center; }
.nt-section-head h2 { margin: 16px 0 0; }

/* ═══════════════════════════════════════════
   SERVICE CARD
   ═══════════════════════════════════════════ */
.nt-service {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--mint);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--ease-card), transform var(--ease-card);
  display: flex; flex-direction: column; gap: 18px;
}
.nt-service:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.nt-service__icon { display: inline-flex; width: 48px; height: 48px; color: var(--sage); }
.nt-service__icon svg { width: 100%; height: 100%; }
.nt-service h3 {
  font-style: italic; font-size: 1.375rem; color: var(--forest);
}
.nt-service p {
  font-weight: var(--weight-light); font-size: 0.9rem;
  line-height: var(--leading-body); color: var(--text-muted);
}
.nt-service__link {
  margin-top: auto; font-family: var(--font-body);
  font-weight: var(--weight-medium); font-size: 0.85rem; color: var(--sage);
}
.nt-service__link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   WHY US (dark)
   ═══════════════════════════════════════════ */
.nt-why__head { margin-bottom: 56px; }
.nt-why__head h2 { color: var(--cream); max-width: 520px; }
.nt-why__item { display: flex; flex-direction: column; gap: 14px; }
.nt-why__item svg { width: 36px; height: 36px; color: var(--mint); }
.nt-why__item h3 { font-style: italic; font-size: 1.375rem; color: var(--cream); }
.nt-why__item p { font-weight: var(--weight-light); font-size: 0.9rem; line-height: 1.75; color: rgba(250,247,242,0.7); }

/* ═══════════════════════════════════════════
   DOCTOR CARD
   ═══════════════════════════════════════════ */
.nt-doctor {
  background: var(--surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
}
.nt-doctor__avatar {
  width: 128px; height: 128px;
  border-radius: var(--radius-full);
  border: 3px solid var(--mint-soft);
  overflow: hidden; background: var(--mint-soft); flex-shrink: 0;
}
.nt-doctor__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.nt-doctor__info { display: flex; flex-direction: column; gap: 6px; }
.nt-doctor__name { font-family: var(--font-heading); font-style: italic; font-weight: var(--weight-semibold); font-size: 1.25rem; color: var(--forest); }
.nt-doctor__title { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.nt-doctor__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

/* Badge */
.nt-badge {
  display: inline-flex; align-items: center;
  background: var(--mint-soft); color: var(--forest);
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: var(--weight-semibold); letter-spacing: 0.10em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════ */
.nt-testimonial {
  margin: 0; position: relative;
  background: var(--cream); border-left: 3px solid var(--mint);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 36px;
}
.nt-testimonial__mark {
  font-family: var(--font-heading); font-size: 4rem; line-height: 1;
  color: var(--mint-soft); display: block; height: 2.2rem;
  overflow: hidden; margin-bottom: 4px;
}
.nt-testimonial blockquote {
  font-family: var(--font-body); font-style: italic; font-weight: var(--weight-light);
  font-size: 1rem; line-height: var(--leading-body); color: var(--text);
}
.nt-testimonial figcaption {
  margin-top: 18px; font-family: var(--font-body);
  font-weight: var(--weight-medium); font-size: 0.85rem; color: var(--sage);
}
.nt-testimonial figcaption span { font-weight: var(--weight-light); color: var(--text-muted); }

/* ═══════════════════════════════════════════
   BOOKING CTA (sage)
   ═══════════════════════════════════════════ */
.nt-booking-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.nt-booking-cta h2 { color: var(--white); max-width: 640px; }
.nt-booking-cta p { font-weight: var(--weight-light); font-size: 1.125rem; color: rgba(255,255,255,0.85); max-width: 520px; line-height: 1.75; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.nt-footer { background: var(--forest); }
.nt-footer__inner { max-width: var(--container-max); margin: 0 auto; padding: 72px 32px 40px; }
.nt-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
.nt-footer__brand { font-family: var(--font-heading); font-style: italic; font-weight: var(--weight-semibold); font-size: 1.5rem; color: var(--cream); }
.nt-footer__tag { font-weight: var(--weight-light); font-size: 0.9rem; line-height: 1.75; color: rgba(250,247,242,0.6); margin: 14px 0 0; max-width: 260px; }
.nt-footer h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: var(--weight-semibold); letter-spacing: 0.1em; text-transform: uppercase; color: var(--mint); margin: 0 0 18px; }
.nt-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.nt-footer__col a { font-weight: var(--weight-light); font-size: 0.9rem; color: rgba(250,247,242,0.75); }
.nt-footer__col a:hover { color: var(--mint); }
.nt-footer__contact { display: flex; flex-direction: column; gap: 12px; font-weight: var(--weight-light); font-size: 0.9rem; color: rgba(250,247,242,0.75); }
.nt-footer__contact span { display: flex; gap: 10px; align-items: center; }
.nt-footer__contact svg { flex-shrink: 0; }
.nt-footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(250,247,242,0.12); font-weight: var(--weight-light); font-size: 0.8rem; color: rgba(250,247,242,0.5); }

/* ═══════════════════════════════════════════
   PAGE HERO (podstrony)
   ═══════════════════════════════════════════ */
.nt-page-hero { background: var(--cream); text-align: center; padding: 100px 32px 72px; position: relative; overflow: hidden; }
.nt-page-hero h1 { font-style: italic; font-size: 3.25rem; margin: 14px 0 18px; }
.nt-page-hero p { max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   REVEAL ANIMACJE
   ═══════════════════════════════════════════ */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  #nt-branch { display: none; }
}

/* ═══════════════════════════════════════════
   BOOKING MODAL
   ═══════════════════════════════════════════ */
.nt-modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(27,67,50,0.4);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.nt-modal-overlay[hidden] { display: none; }
.nt-modal {
  width: 520px; max-width: 100%;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); padding: 40px 40px 36px;
  max-height: 90vh; overflow-y: auto;
}
.nt-modal__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.nt-modal__close { border: none; background: none; cursor: pointer; color: var(--text-muted); padding: 0; line-height: 0; }
.nt-modal h3 { font-style: italic; font-size: 1.75rem; color: var(--forest); margin: 0 0 24px; }
.nt-modal__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.nt-modal__grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.nt-chip {
  padding: 12px 14px; border-radius: var(--radius-sm); cursor: pointer; text-align: center;
  border: 1.5px solid var(--sand); background: var(--white);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: var(--weight-medium);
  color: var(--text); transition: all 0.2s ease;
}
.nt-chip:hover { border-color: var(--sage); }
.nt-chip.selected { border-color: var(--sage); background: var(--mint-soft); color: var(--forest); }
.nt-modal__fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.nt-modal__fields input {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand-dark);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--white); width: 100%; outline: none;
}
.nt-modal__fields input:focus { border-color: var(--sage); }
.nt-modal__actions { display: flex; gap: 12px; }
.nt-modal__summary { font-weight: var(--weight-light); font-size: 0.9rem; color: var(--text-muted); margin: 0 0 24px; }
.nt-modal__success { text-align: center; padding: 16px 0; }
.nt-modal__success-icon {
  width: 64px; height: 64px; border-radius: var(--radius-full);
  background: var(--mint-soft); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--forest);
}
.nt-modal__success p { font-weight: var(--weight-light); font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); margin: 0 0 28px; }
.nt-modal__step { display: none; }
.nt-modal__step.active { display: block; }

/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */
.nt-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.nt-post-card {
  background: var(--white); border: 1px solid var(--border-card);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--ease-card), transform var(--ease-card);
  display: flex; flex-direction: column;
}
.nt-post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.nt-post-card__thumb { height: 180px; background: var(--mint-soft); display: flex; align-items: center; justify-content: center; }
.nt-post-card__thumb svg { width: 44px; height: 44px; color: var(--sage-light); }
.nt-post-card__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.nt-post-card__cat { font-size: 0.72rem; font-weight: var(--weight-medium); letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.nt-post-card h2, .nt-post-card h3 { font-style: italic; font-size: 1.3rem; margin-bottom: 12px; line-height: 1.3; }
.nt-post-card h2 a, .nt-post-card h3 a { color: var(--forest); }
.nt-post-card__excerpt { font-weight: var(--weight-light); font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.nt-post-card__meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }

/* Single post */
.nt-article { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.nt-article__body { font-weight: var(--weight-light); font-size: 1.0625rem; line-height: 1.85; color: var(--text); }
.nt-article__body h2 { font-style: italic; font-size: 1.9rem; margin: 40px 0 16px; }
.nt-article__body h3 { font-style: italic; font-size: 1.4rem; margin: 32px 0 12px; }
.nt-article__body p { margin: 0 0 20px; }
.nt-article__body ul { list-style: disc; padding-left: 24px; margin: 0 0 20px; }
.nt-article__body li { margin-bottom: 8px; }
.nt-article__body blockquote { border-left: 3px solid var(--gold); padding: 8px 0 8px 24px; margin: 24px 0; font-family: var(--font-heading); font-style: italic; font-size: 1.4rem; color: var(--forest); line-height: 1.5; }
.nt-article__body a { color: var(--sage); text-decoration: underline; }

/* Cennik / tabele */
.nt-price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-card); }
.nt-price-table th { background: var(--forest); color: var(--cream); text-align: left; padding: 18px 24px; font-family: var(--font-body); font-weight: var(--weight-medium); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.nt-price-table td { padding: 16px 24px; border-bottom: 1px solid var(--sand); font-size: 0.95rem; }
.nt-price-table tr:last-child td { border-bottom: none; }
.nt-price-table td:last-child { text-align: right; font-weight: var(--weight-medium); color: var(--forest); white-space: nowrap; }
.nt-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* FAQ / kontakt info */
.nt-info-card { background: var(--white); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.nt-info-card svg { color: var(--sage); }

/* ═══════════════════════════════════════════
   RESPONSYWNOŚĆ
   ═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .nt-section { padding: 72px 0; }
  .nt-grid-4 { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nt-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .nt-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nt-h1, .nt-hero h1 { font-size: 3rem; }
  .nt-blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nt-nav__links { display: none; }
  .nt-nav__right .nt-btn { display: none; }
  .nt-hamburger { display: inline-flex; }
  .nt-mobile-menu {
    display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 49;
    background: var(--cream); border-bottom: 1px solid var(--sand);
    padding: 24px 32px; flex-direction: column; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nt-mobile-menu.open { display: flex; }
  .nt-mobile-menu a { padding: 12px 0; font-size: 1rem; color: var(--forest); border-bottom: 1px solid var(--sand); }
  .nt-mobile-menu .nt-btn { margin-top: 12px; }
  .nt-grid-3, .nt-grid-4 { grid-template-columns: 1fr; }
  .nt-trust__inner { gap: 24px; flex-direction: column; align-items: flex-start; }
  .nt-hero__inner { padding: 80px 32px 72px; }
  .nt-hero h1, .nt-h1 { font-size: 2.5rem; }
  .nt-h2--lg { font-size: 2.25rem; }
  .nt-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .nt-blog-grid { grid-template-columns: 1fr; }
  .nt-modal { padding: 28px 24px; }
  .nt-modal__grid2, .nt-modal__grid3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .nt-container, .nt-hero__inner, .nt-trust__inner, .nt-footer__inner { padding-left: 20px; padding-right: 20px; }
  .nt-hero h1, .nt-h1 { font-size: 2.1rem; }
  .nt-h2 { font-size: 1.85rem; }
  .nt-btn { padding: 14px 28px; font-size: 0.85rem; }
  .nt-hero__cta { flex-direction: column; }
  .nt-hero__cta .nt-btn { width: 100%; }
}
