/* ── Global resets & base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 115%; }
body { overflow-x: hidden; }

.wp-block-group:has(> main) {
  margin-top: 0 !important;
}

main.wp-block-group {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Blokkok közötti fehér rések eltávolítása */
.wp-block-post-content > .wp-block-html,
main > .wp-block-html {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wp-block-html {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wp-block-post-content {
  row-gap: 0 !important;
}

body {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  color: #5a4a3a;
  background-color: #faf6f0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: #3d2b1f;
}

/* ── Header / Navbar ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8d5be;
  padding: 0 2rem;
}

.nb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.1rem 0;
  gap: 2rem;
}

.nb-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nb-logo-main {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3d2b1f;
  letter-spacing: 0.06em;
}

.nb-logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c4956a;
  margin-top: 2px;
}

/* nav links */
.wp-block-navigation__container {
  gap: 0.2rem !important;
}

.wp-block-navigation-item__content {
  padding: 0.45em 0.9em !important;
  border-radius: 50px !important;
  transition: background 0.2s, color 0.2s;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #5a4a3a !important;
  text-decoration: none !important;
}

.wp-block-navigation-item__content:hover,
.current-menu-item .wp-block-navigation-item__content {
  background: #f0e6d6 !important;
  color: #c4956a !important;
}

/* mobile toggle */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  color: #3d2b1f !important;
  background: transparent !important;
  border: none !important;
}

/* ── Mobil lenyíló menü ── */
@media (max-width: 768px) {
  .wp-block-navigation__responsive-container.is-menu-open,
  .wp-block-navigation__responsive-container--is-menu-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 5rem 1.5rem 2rem !important;
    background: rgba(250, 246, 240, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid #e8d5be !important;
    box-shadow: 0 8px 32px rgba(61, 43, 31, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    z-index: 200 !important;
    animation: menuSlideDown 0.28s ease;
  }

  @keyframes menuSlideDown {
    from { transform: translateY(-16px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
  }

  .wp-block-navigation__responsive-container .wp-block-navigation__container,
  .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 0.2rem !important;
  }

  .wp-block-navigation__responsive-container .wp-block-navigation-item__content {
    font-size: 1rem !important;
    padding: 0.75em 1em !important;
    display: block !important;
    border-radius: 12px !important;
    letter-spacing: 0.06em !important;
  }

  .wp-block-navigation__responsive-container-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1.5rem !important;
  }
}

/* ── Hero Section ── */
.nb-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #faf6f0 0%, #f5eadb 45%, #eddec8 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.nb-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 130%;
  border-radius: 50% 0 0 60%;
  background: rgba(196, 149, 106, 0.12);
  pointer-events: none;
}

.nb-hero-content {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.nb-hero-content > div {
  justify-content: center;
}

.nb-hero-content--split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.nb-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nb-hero-img-main,
.nb-hero-img-secondary {
  border-radius: 30px 8px 30px 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196,149,106,0.2);
  height: 500px;
}

.nb-hero-img-secondary {
  border-radius: 8px 30px 8px 30px;
  box-shadow: 0 12px 40px rgba(61,43,31,0.15);
}

.nb-hero-img-main img,
.nb-hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .nb-hero-content--split {
    grid-template-columns: 1fr;
  }
  .nb-hero-img-main, .nb-hero-img-secondary { height: 260px; }
}

.nb-hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c4956a;
  margin-bottom: 1.2rem;
  display: block;
}

.nb-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0 auto 1.5rem;
  max-width: 700px;
}

.nb-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #7a6655;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

/* ── Buttons ── */
.nb-btn {
  display: inline-block;
  padding: 0.85em 2.2em;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.nb-btn-primary {
  background: #c4956a;
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 149, 106, 0.35);
}
.nb-btn-primary:hover { background: #8b7355; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(139,115,85,0.35); }

.nb-btn-outline {
  background: transparent;
  color: #c4956a;
  border: 2px solid #c4956a;
}
.nb-btn-outline:hover { background: #c4956a; color: #fff; transform: translateY(-2px); }

/* ── Section headings ── */
.nb-section {
  padding: 5rem 2rem;
  margin-top: auto;
  margin-bottom: auto;
}

.nb-section-inner {
  max-width: 100%;
  margin: 0 auto;
}

.nb-section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c4956a;
  margin-bottom: 0.75rem;
}

.nb-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.nb-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #c4956a, #d4a59a);
  border: none;
  border-radius: 2px;
  margin: 1.2rem 0 2rem;
}

/* ── Service cards ── */
.nb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.nb-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid #f0e6d6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.nb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(196, 149, 106, 0.18);
}

.nb-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.nb-card h3 {
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
}

.nb-card p {
  font-size: 0.88rem;
  color: #7a6655;
  line-height: 1.7;
  margin: 0;
}

/* ── Feature strip ── */
.nb-feature-strip {
  margin-top: 0 !important;
  background: linear-gradient(135deg, #3d2b1f 0%, #5a4a3a 100%);
  color: #faf6f0;
  padding: 3.5rem 2rem;
}

.nb-feature-strip-inner {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.nb-feature-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #c4956a;
  margin: 0 0 0.3rem;
}

.nb-feature-item p {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #e8d5be;
  margin: 0;
  text-transform: uppercase;
}

/* ── About teaser ── */
.nb-about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 720px) {
  .nb-about-teaser { grid-template-columns: 1fr; gap: 2rem; }
}

.nb-about-img {
  border-radius: 30px 8px 30px 8px;
  background: linear-gradient(135deg, #f0e6d6, #e8d5be);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.nb-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ── Before / After section ── */
.nb-ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .nb-ba-grid {
    grid-template-columns: 1fr;
  }
}

.nb-ba-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0e6d6;
}

.nb-ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nb-ba-half {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.nb-ba-half.before { background: #f5f0ec; }
.nb-ba-half.after  { background: #fdf8f2; }

.nb-ba-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b7355;
  background: rgba(255,255,255,0.85);
  padding: 2px 10px;
  border-radius: 20px;
}

.nb-ba-info {
  padding: 1.2rem 1.5rem;
}
.nb-ba-info h4 { font-size: 1.1rem; margin: 0 0 0.3rem; }
.nb-ba-info p  { font-size: 0.82rem; color: #7a6655; margin: 0; }

/* ── Skin concerns grid ── */
.nb-skin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.nb-skin-card {
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  border: 1px solid #e8d5be;
  background: #fff;
  transition: all 0.25s;
}
.nb-skin-card:hover { background: #fdf8f2; border-color: #c4956a; }

.nb-skin-card .icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.nb-skin-card h4    { font-size: 1.1rem; margin: 0 0 0.4rem; }
.nb-skin-card p     { font-size: 0.83rem; color: #7a6655; margin: 0; }

/* ── Home care section ── */
.nb-care-bg {
  background: linear-gradient(135deg, #faf6f0, #f5eadb);
}

.nb-care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.nb-care-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid #f0e6d6;
}
.nb-care-card h4 { font-size: 1.15rem; margin: 0 0 0.6rem; }
.nb-care-card p  { font-size: 0.86rem; color: #7a6655; margin: 0; line-height: 1.7; }

/* ── Contact form ── */
.nb-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 720px) {
  .nb-contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

.nb-contact-info h2 { font-size: 2rem; margin: 0 0 0.8rem; }
.nb-contact-info p  { color: #7a6655; line-height: 1.8; font-size: 0.95rem; }

.nb-contact-details { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.nb-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.9rem;
}
.nb-contact-row .ci { font-size: 1.2rem; flex-shrink: 0; }
.nb-contact-row strong { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #c4956a; margin-bottom: 2px; }

.nb-form {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid #f0e6d6;
  box-shadow: 0 8px 40px rgba(196,149,106,0.1);
}

.nb-form h3 {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

.nb-field {
  margin-bottom: 1.2rem;
}

.nb-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 0.45rem;
}

.nb-field input,
.nb-field select,
.nb-field textarea {
  width: 100%;
  padding: 0.8em 1.1em;
  border: 1.5px solid #e8d5be;
  border-radius: 12px;
  background: #faf6f0;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: #3d2b1f;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.nb-field input:focus,
.nb-field select:focus,
.nb-field textarea:focus {
  border-color: #c4956a;
  box-shadow: 0 0 0 3px rgba(196,149,106,0.15);
  background: #fff;
}

.nb-field textarea { resize: vertical; min-height: 130px; }

.nb-form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* CF7 reset */
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0.8em 1.1em;
  border: 1.5px solid #e8d5be;
  border-radius: 12px;
  background: #faf6f0;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: #3d2b1f;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.wpcf7-form-control-wrap input:focus,
.wpcf7-form-control-wrap textarea:focus {
  border-color: #c4956a;
  box-shadow: 0 0 0 3px rgba(196,149,106,0.15);
}
.wpcf7-submit {
  display: inline-block;
  padding: 0.85em 2.2em;
  border-radius: 50px;
  background: #c4956a;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  margin-top: 0.5rem;
}
.wpcf7-submit:hover { background: #8b7355; transform: translateY(-2px); }
.wpcf7-response-output { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.88rem; }

/* ── Footer ── */
.wp-block-template-part[class*="footer"],
footer.wp-block-template-part {
  margin-top: 0 !important;
}

.nb-footer {
  background: #3d2b1f;
  color: #e8d5be;
  padding: 3.5rem 2rem 2rem;
}

.nb-footer-inner {
  max-width: 100%;
  margin: 0 auto;
}

.nb-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232,213,190,0.2);
  margin-bottom: 2rem;
}

@media (max-width: 720px) {
  .nb-footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

.nb-footer-brand .nb-logo-main { color: #faf6f0; font-size: 1.4rem; }
.nb-footer-brand .nb-logo-sub  { color: #c4956a; }
.nb-footer-brand p {
  font-size: 0.85rem;
  color: #b09a85;
  line-height: 1.8;
  margin: 1rem 0 0;
  max-width: 260px;
}

.nb-footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c4956a;
  margin: 0 0 1rem;
}

.nb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nb-footer-col ul li a {
  font-size: 0.86rem;
  color: #b09a85;
  text-decoration: none;
  transition: color 0.2s;
}
.nb-footer-col ul li a:hover { color: #f0e6d6; }

.nb-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #7a6655;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Footer social icons ── */
.nb-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.nb-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #b09a85;
  transition: background 0.2s, color 0.2s;
}
.nb-social-icon:hover {
  background: #c4956a;
  color: #fff;
}

/* ── Generic page content ── */
.nb-page-hero {
  background: linear-gradient(135deg, #f5eadb, #eddec8);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.nb-page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 0.5rem;
}

.nb-page-hero p {
  font-size: 1rem;
  color: #7a6655;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.nb-page-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}

@media (max-width: 768px) {
  .nb-page-content {
    padding: 2rem 0.5rem;
  }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-caramel { color: #c4956a; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* ── Treatments page ── */
.nb-treatments-page {
  max-width: 80%;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nb-treatments-hero {
  text-align: center;
  padding: 3rem 0 4rem;
}

.nb-treatments-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0.3rem 0 0.8rem;
}

.nb-treatments-hero p {
  font-size: 1rem;
  color: #7a6655;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.nb-treatment-row,
.nb-treatment-row--reverse {
  display: flex;
  flex-direction: column;
  min-height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(61,43,31,0.07);
  margin-bottom: 2.5rem;
  background: #fff;
}

.nb-treatment-img {
  display: block;
  margin: 0;
  width: 100%;
  line-height: 0;
}

.nb-treatment-emoji {
  font-size: 6rem;
  opacity: 0.7;
}

.nb-treatment-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3rem;
}

.nb-treatment-text h2 {
  font-size: 2.2rem;
  margin: 0.3rem 0 0.5rem;
}

.nb-treatment-text p {
  color: #7a6655;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.nb-treatment-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nb-treatment-details li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #5a4a3a;
}

.nb-treatment-details li span {
  font-size: 1rem;
}

.nb-treatments-cta {
  background: linear-gradient(135deg, #3d2b1f, #5a4a3a);
  border-radius: 32px;
  padding: 3.5rem;
  text-align: center;
  color: #faf6f0;
  margin: 3rem 0 0;
}

.nb-treatments-cta h2 {
  color: #faf6f0;
  font-size: 1.9rem;
  margin: 0 0 0.8rem;
}

.nb-treatments-cta p {
  color: #b09a85;
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .nb-treatment-img { min-height: 220px; }
  .nb-treatment-text { padding: 1.5rem 1.5rem 2.5rem; }
}

/* ── About page ── */
.nb-about-page {
  max-width: 80%;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.nb-about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.nb-about-values {
  background: linear-gradient(135deg, #faf6f0, #f5eadb);
  border-radius: 32px;
  padding: 3.5rem;
}

.nb-about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.nb-about-value-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.nb-about-value-item h4 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.nb-about-value-item p {
  font-size: 0.87rem;
  color: #7a6655;
  line-height: 1.7;
  margin: 0;
}

.nb-about-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.nb-about-creds {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nb-about-cred-card {
  background: #fff;
  border: 1px solid #f0e6d6;
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nb-about-cred-card strong {
  font-size: 0.85rem;
  color: #3d2b1f;
  display: block;
  margin-bottom: 2px;
}

.nb-about-cred-card span {
  font-size: 0.8rem;
  color: #7a6655;
}

.nb-about-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.nb-about-philosophy-text p {
  color: #7a6655;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.nb-about-why-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.nb-about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid #f0e6d6;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
}

.nb-about-why-item > span {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.nb-about-why-item strong {
  display: block;
  font-size: 0.95rem;
  color: #3d2b1f;
  margin-bottom: 0.3rem;
}

.nb-about-why-item p {
  font-size: 0.85rem;
  color: #7a6655;
  margin: 0;
  line-height: 1.6;
}

.nb-about-quickglow {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, #faf6f0, #f5eadb);
  border-radius: 32px;
  padding: 3.5rem;
}

.nb-about-quickglow-inner p {
  color: #7a6655;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.nb-about-quickglow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: rgba(196,149,106,0.1);
  border-radius: 24px;
  min-height: 200px;
}

@media (max-width: 860px) {
  .nb-about-philosophy,
  .nb-about-quickglow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nb-about-page {
    max-width: 100%;
  }

  .nb-about-values {
    padding: 2rem 1.2rem;
  }

  .nb-about-why-item > div {
    min-width: 0;
  }
}

.nb-about-cta {
  background: linear-gradient(135deg, #3d2b1f, #5a4a3a);
  border-radius: 32px;
  padding: 3.5rem;
  text-align: center;
  color: #faf6f0;
}

.nb-about-cta h2 {
  color: #faf6f0;
  font-size: 2rem;
  margin: 0 0 0.8rem;
}

.nb-about-cta p {
  color: #b09a85;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .nb-about-intro,
  .nb-about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Főoldal inline grid reszponzív javítás ── */
@media (max-width: 860px) {
  .nb-section-inner div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .nb-section-inner div[style*="grid-template-columns"] > div {
    min-width: 0;
  }
}

/* ── Contact page ── */
.page-template-page-contact .nb-page-content {
  max-width: 80%;
}

@media (max-width: 720px) {
  .page-template-page-contact .nb-page-content { max-width: 100%; padding: 2rem 0; }
  .nb-form { padding: 1.8rem 1.2rem; border-radius: 16px; }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .page-id-11 .nb-page-content > div[style*="grid-template-columns:1fr 1.1fr"],
  .page-id-11 .nb-page-content > div[style*="grid-template-columns:1.1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 860px) {
  .nb-header-inner { padding: 0.9rem 0; }
}
