/* ===================================================================
   NEFRYT — Studio Terapii Naturalnej
   Paleta inspirowana logo (zielenie nefrytu / jadeitu)
   =================================================================== */

:root {
  /* Kolory */
  --green-900: #3a5524;   /* ciemna zieleń z napisu w logo */
  --green-700: #4a6b2e;
  --green-600: #5d8338;
  --green-500: #7fae54;   /* średnia zieleń liścia */
  --green-400: #9ec96a;
  --green-300: #bcd98f;
  --green-100: #eef4e4;   /* bardzo jasne tło */
  --cream:     #faf8f1;
  --sand:      #f3eee2;
  --ink:       #2c331f;
  --muted:     #6b7560;
  --white:     #ffffff;

  /* Typografia */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;

  /* Układ */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 20px rgba(58, 85, 36, 0.08);
  --shadow-md: 0 18px 50px rgba(58, 85, 36, 0.14);
  --t: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; color: var(--green-900); letter-spacing: 0.2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.5rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green-600);
  margin-bottom: 14px;
}

.section { padding: clamp(70px, 9vw, 130px) 0; }
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.08rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.5px; padding: 14px 30px; border-radius: 50px;
  cursor: pointer; border: 1.5px solid transparent; transition: var(--t);
  text-align: center;
}
.btn-lg { padding: 17px 40px; font-size: 1rem; }
.btn-primary { background: var(--green-700); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-900); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--green-900); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost-dark { background: transparent; color: var(--green-700); border-color: var(--green-500); }
.btn-ghost-dark:hover { background: var(--green-700); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 18px 0; transition: var(--t);
}
.site-header.scrolled {
  background: rgba(250, 248, 241, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(58,85,36,0.08);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 52px; width: auto; transition: var(--t); }
.site-header.scrolled .brand-logo { height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; color: var(--white); transition: var(--t); }
.brand-text strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: 1px; }
.brand-text small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.85; }
.site-header.scrolled .brand-text { color: var(--green-900); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) {
  font-size: 0.95rem; font-weight: 400; color: var(--white); position: relative; padding: 4px 0;
  transition: var(--t);
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: currentColor; transition: var(--t);
}
.nav a:not(.btn):hover::after { width: 100%; }
.site-header.scrolled .nav a:not(.btn) { color: var(--green-900); }
.nav-cta { color: var(--white) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 101; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); transition: var(--t); border-radius: 2px; }
.site-header.scrolled .nav-toggle span { background: var(--green-900); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(120deg, #5d8338, #3a5524), url('../images/hero.jpg');
  background-size: cover; background-position: center; color: var(--white);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,51,31,0.45) 0%, rgba(44,51,31,0.25) 40%, rgba(44,51,31,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: 80px; padding-bottom: 80px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero-lead { font-size: 1.2rem; font-weight: 300; max-width: 560px; margin-bottom: 36px; opacity: 0.95; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-hint span {
  display: block; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; position: relative;
}
.scroll-hint span::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0%{opacity:1;top:8px} 70%{opacity:0;top:22px} 100%{opacity:0} }

/* ===== FEATURES ===== */
.features { background: var(--green-100); padding: 64px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature { text-align: center; padding: 14px; }
.feature-icon { font-size: 2.4rem; margin-bottom: 12px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* ===== O NAS ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-badge {
  position: absolute; bottom: -26px; right: -10px; background: var(--green-700); color: #fff;
  border-radius: var(--radius); padding: 20px 26px; text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .num { display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: #fff; }
.about-badge .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.9; }
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text strong { color: var(--ink); font-weight: 500; }

.team { display: flex; gap: 30px; margin-top: 34px; flex-wrap: wrap; }
.team-member { display: flex; align-items: center; gap: 14px; }
.team-member img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-300); }
.team-member h4 { font-size: 1.2rem; margin-bottom: 0; }
.team-member p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ===== USŁUGI ===== */
.services { background: var(--sand); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--t); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-img { height: 220px; background-size: cover; background-position: center; background-color: var(--green-300); }
.service-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.96rem; flex: 1; margin-bottom: 16px; }
.service-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--green-700); font-weight: 600; }
.services-cta { text-align: center; margin-top: 54px; }

/* ===== GALERIA ===== */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 18px; }
.gallery-item {
  position: relative; padding: 0; border: none; cursor: pointer; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--green-300);
}
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.gallery-item::after {
  content: "⤢"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff; background: rgba(58,85,36,0.35); opacity: 0; transition: var(--t);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  background: rgba(28,33,18,0.92); padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: none; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; line-height: 1; transition: var(--t);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== KOMORA HIPERBARYCZNA ===== */
.hyperbaric { background: linear-gradient(180deg, var(--green-100), var(--cream)); }
.hyper-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.hyper-text h2 { margin-bottom: 20px; }
.hyper-text > p { color: var(--muted); margin-bottom: 22px; }
.hyper-list { margin-bottom: 30px; }
.hyper-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink); }
.hyper-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--white);
  background: var(--green-500); width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; margin-top: 5px;
}
.hyper-prices { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.hyper-prices div { display: flex; flex-direction: column; }
.hp-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--green-700); font-weight: 600; }
.hp-lbl { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.hyper-media img { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Panel komory (gdy brak zdjęcia) */
.hyper-card {
  position: relative; border-radius: var(--radius-lg); padding: 56px 44px; color: #fff; overflow: hidden;
  background: linear-gradient(150deg, var(--green-500), var(--green-900));
  box-shadow: var(--shadow-md); text-align: center;
}
.hyper-card::before, .hyper-card::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08);
}
.hyper-card::before { width: 240px; height: 240px; top: -80px; right: -70px; }
.hyper-card::after { width: 180px; height: 180px; bottom: -70px; left: -50px; }
.hyper-card-icon { position: relative; font-size: 3.4rem; display: block; margin-bottom: 16px; }
.hyper-card h3 { color: #fff; font-size: 2rem; margin-bottom: 14px; position: relative; }
.hyper-card > p { position: relative; opacity: 0.95; max-width: 360px; margin: 0 auto 30px; }
.hyper-card-stats { position: relative; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.hyper-card-stats strong { font-family: var(--font-display); font-size: 1.9rem; display: block; }
.hyper-card-stats span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

/* ===== PRZYGOTOWANIE I PRZECIWWSKAZANIA ===== */
.prepare { background: var(--sand); }
.prepare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 56px; }
.prepare-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-sm); }
.prepare-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.prepare-card h3 { margin-bottom: 22px; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: 14px; color: var(--muted); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; color: #fff; background: var(--green-500);
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
}

.contra { max-width: 860px; margin: 0 auto; }
.contra-title { text-align: center; margin-bottom: 14px; }
.contra-intro { text-align: center; color: var(--muted); margin-bottom: 34px; }
.contra-intro strong { color: var(--green-700); font-weight: 500; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--green-900); transition: var(--t);
}
.acc-head:hover { color: var(--green-600); }
.acc-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 18px; height: 2px; background: var(--green-600);
  transform: translateY(-50%); transition: var(--t);
}
.acc-icon::after { transform: translateY(-50%) rotate(90deg); }
.acc-item.open .acc-icon::after { transform: translateY(-50%) rotate(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.acc-panel ul { padding: 0 26px 24px; }
.acc-panel li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--muted); }
.acc-panel li::before { content: "•"; position: absolute; left: 4px; color: var(--green-500); font-weight: bold; }
.contra-note { text-align: center; color: var(--muted); font-size: 0.86rem; font-style: italic; margin-top: 28px; }

/* ===== CENNIK ===== */
.price-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.price-col { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); }
.price-cat { font-size: 1.4rem; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 2px solid var(--green-100); }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px dashed #e3e0d4; }
.price-list li:last-child { border-bottom: none; }
.pl-name { color: var(--ink); font-size: 0.98rem; }
.pl-name em { color: var(--muted); font-style: normal; font-size: 0.82rem; }
.pl-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--green-700); white-space: nowrap; }
.price-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 30px; font-style: italic; }

/* ===== OPINIE ===== */
.reviews { background: var(--cream); }
.reviews-score { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-top: 22px; }
.rs-stars { color: #e0a92e; font-size: 1.5rem; letter-spacing: 3px; }
.rs-num { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-900); }
.rs-num strong { font-size: 1.7rem; }
.rs-count { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px; transition: var(--t);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-stars { color: #e0a92e; letter-spacing: 2px; font-size: 1rem; }
.review-card blockquote { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.45; color: var(--ink); flex: 1; }
.review-card figcaption { font-weight: 500; color: var(--green-700); letter-spacing: 0.5px; }

/* ===== FAQ ===== */
.faq { background: var(--green-100); }
.faq-accordion { max-width: 820px; margin: 0 auto; }
.faq .acc-panel a, .acc-panel a { color: var(--green-700); text-decoration: underline; }
.faq .acc-panel a:hover { color: var(--green-900); }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative; padding: clamp(80px, 10vw, 130px) 0; text-align: center; color: #fff;
  background: linear-gradient(120deg, #4a6b2e, #3a5524), url('../images/cta.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(44,51,31,0.55); }
.cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { margin-bottom: 30px; font-size: 1.1rem; opacity: 0.95; }

/* ===== KONTAKT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.contact-info h2 { margin-bottom: 30px; }
.contact-list { margin-bottom: 34px; }
.contact-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--green-100); }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-list strong { display: block; color: var(--green-900); font-weight: 500; margin-bottom: 2px; }
.contact-list p { color: var(--muted); }
.contact-list a:hover { color: var(--green-700); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 460px; }
.contact-map iframe { height: 100%; min-height: 460px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.85); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr 1fr; gap: 40px; align-items: center; padding-bottom: 40px; }
.footer-logo { height: 64px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.95rem; transition: var(--t); }
.footer-nav a:hover { color: var(--green-300); }
.footer-cta { text-align: right; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.footer-bottom p { font-size: 0.82rem; opacity: 0.7; text-align: center; }

/* ===== FLOATING BOOK (mobile) ===== */
.float-book {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: var(--green-700); color: #fff; padding: 14px 32px; border-radius: 50px;
  box-shadow: var(--shadow-md); z-index: 90; font-weight: 500; display: none;
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .about-grid, .hyper-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media img, .hyper-media img { height: 420px; }
  .prepare-grid { grid-template-columns: 1fr; }
  .price-columns { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-cta { text-align: center; }
  .cta-banner { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 100px 36px 40px; gap: 22px; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: var(--t);
  }
  .nav.open { right: 0; }
  .nav a:not(.btn) { color: var(--green-900) !important; font-size: 1.1rem; }
  .nav-cta { width: 100%; margin-top: 10px; }
  .nav-toggle { display: flex; }
  .nav.open ~ .nav-toggle span,
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle.active span { background: var(--green-900); }

  .brand-text strong { font-size: 1.25rem; }
  .brand-text small { font-size: 0.6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 160px; gap: 12px; }
  .lightbox { padding: 16px; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; }
  .hero-actions .btn { flex: 1; }
  .about-badge { right: 10px; bottom: -20px; padding: 14px 18px; }
  .team { gap: 20px; }
  .float-book { display: block; }
  .float-book { bottom: 14px; }
}
