* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================
   LOADING SCREEN
   ===================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0806;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: 'Bodoni Moda SC', serif;
  font-size: clamp(24px, 4vw, 48px);
  color: var(--gold);
  letter-spacing: 0.3em;
  font-weight: 700;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.loader-line {
  width: 200px;
  height: 1px;
  background: rgba(201,168,76,0.2);
  overflow: hidden;
}

.loader-line span {
  display: block;
  height: 100%;
  background: var(--gold);
  animation: loaderBar 1.8s ease-in-out forwards;
}

@keyframes loaderBar {
  0% { width: 0%; }
  100% { width: 100%; }
}


/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --black: #000000;
  --dark: #0a0a0a;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  background: url('bg.jpg') center center / cover fixed;
  background-color: #080604;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* iOS fix — background-attachment: fixed breaks on mobile Safari */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

.page-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  background: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 120px rgba(0,0,0,0.6);
}

/* NAVBAR FULLWIDTH (hero poza wrapperem) */
.navbar--fullwidth {
  max-width: 100vw;
  width: 100%;
  left: 0;
  transform: none;
}

.hero--fullwidth {
  width: 100vw;
}

.hero--fullwidth .hero-title {
  padding-left: max(5vw, 20px);
}

.hero--fullwidth .hero-tagline {
  padding-left: max(5vw, 20px);
}

/* HAMBURGER — hidden on desktop, shown on mobile via media query */
.hamburger {
  display: none;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background 0.3s ease;
}

.nav-inner {
  width: 100%;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.25em;
  font-weight: 400;
  font-family: 'Bodoni Moda SC', serif;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--gold);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.4) 80%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-tagline {
  position: relative;
  z-index: 2;
  padding: 16px 48px 0 48px;
  text-align: left;
  font-family: 'Bodoni Moda SC', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.hero-title {
  position: relative;
  z-index: 2;
  padding: 0 48px 64px 48px;
}

.hero-title h1 {
  font-family: 'Bodoni Moda SC', serif;
  font-size: clamp(60px, 10vw, 130px);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

/* SECTIONS */
.section {
  padding: 120px 40px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Bodoni Moda SC', serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* WHY SECTION */
.why-section {
  background: transparent;
}

.why-header {
  padding: 80px 48px 48px;
  background: transparent;
}

.why-header h2 {
  font-family: 'Bodoni Moda SC', serif;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ACCORDION */
.accordion {
  width: 100%;
}

.acc-item {
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  background: transparent;
  transition: background 0.3s;
}

.acc-item:last-child {
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.acc-header {
  display: flex;
  align-items: center;
  padding: 28px 48px;
  cursor: pointer;
  gap: 32px;
}

.acc-num {
  display: none;
}

.acc-title {
  font-family: 'Bodoni Moda SC', serif;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--white);
  font-weight: 700;
  flex: 1;
  letter-spacing: 0.02em;
}

.acc-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
  transition: opacity 0.2s, transform 0.3s;
  flex-shrink: 0;
}

.acc-toggle:hover {
  opacity: 1;
}

.acc-item.open .acc-toggle {
  transform: rotate(0deg);
}

.acc-body {
  display: none;
  padding: 0 48px 48px;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
}

.acc-item.open .acc-body {
  display: grid;
}

.acc-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.acc-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.03em;
}

.acc-bullet:last-child {
  border-bottom: none;
}

.tri {
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
}

.acc-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acc-right p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 100%;
}

/* PHOTO COLLAGE */
.kolaz-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 6px solid #8B5E2A;
  padding: 8px;
  background: #3a2510;
}

.kolaz-img {
  width: 100%;
  display: block;
}

/* PHOTO GRID */
.photo-grid-section {
  padding: 60px 48px;
}

.photo-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 6px solid #8B5E2A;
  padding: 8px;
  background: #3a2510;
}

.photo-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.photo-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.grid-img {
  overflow: hidden;
  line-height: 0;
}

.grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-grid-top .grid-img {
  aspect-ratio: 2/3;
}

.photo-grid-bottom .grid-img {
  aspect-ratio: 4/3;
}

/* CONTACT SECTION */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px;
  background: transparent;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Złota dekoracyjna linia przed headingiem */
.contact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.contact-heading-wrap {
  flex-shrink: 0;
}

.contact-deco {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-deco-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.contact-deco-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.9;
}

.contact-heading {
  font-family: 'Bodoni Moda SC', serif;
  font-size: clamp(52px, 7vw, 96px);
  color: var(--white);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.contact-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
  padding-top: 16px;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.1));
  margin-bottom: 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Cards z bgFAQ.png + gold glow */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 56px 28px 48px;
  background: url('bgFAQ.png') left center / cover no-repeat;
  position: relative;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

/* Dark overlay na karcie */
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 2, 0.55);
  transition: background 0.35s ease;
  z-index: 0;
}

.contact-card:hover::before {
  background: rgba(10, 6, 2, 0.35);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 8px 40px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.15);
}

/* Wszystkie dzieci nad overlayem */
.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card--disabled {
  opacity: 0.45;
  cursor: default;
}

.contact-card--disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(201,168,76,0.2);
}

.contact-card--disabled:hover::before {
  background: rgba(10, 6, 2, 0.55);
}

.contact-card-icon {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.contact-card:hover .contact-card-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.contact-card-label {
  font-family: 'Bodoni Moda SC', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-card-value {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.contact-card-action {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  transition: letter-spacing 0.3s;
}

.contact-card:hover .contact-card-action {
  letter-spacing: 0.28em;
}

.coming-soon {
  color: rgba(255,255,255,0.25);
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 48px 100px;
  background: transparent;
  position: relative;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: clamp(52px, 7.5vw, 104px);
  color: var(--white);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.faq-divider {
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 48px;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  width: 100%;
}

/* Closed state - zamknieteFAQ.png as background */
.faq-item:not(.open) {
  background: url('zamknieteFAQ.png') center center / cover no-repeat;
}

/* Open state - bgFAQ.png as main background */
.faq-item.open {
  background: url('bgFAQ.png') left center / cover no-repeat;
}

/* TOP section - gold at 40% opacity over the image */
.faq-item.open .faq-header {
  background: rgba(181, 148, 16, 0.40);
  position: relative;
  z-index: 2;
  width: 100%;
}

.faq-item.open .faq-question {
  color: #000000;
}

/* BOTTOM section - dark olive at 40% opacity over the image */
.faq-item.open .faq-answer {
  background: rgba(74, 60, 6, 0.40);
  position: relative;
  z-index: 2;
  width: 100%;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 18px 40px;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.3s;
}

.faq-icon {
  color: #B59410;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  min-width: 22px;
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  color: #000000;
}

.faq-question {
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.faq-answer {
  display: none;
  padding: 24px 20px 28px 40px;
  width: 100%;
  box-sizing: border-box;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

/* CTA SECTION */
.cta-section {
  position: relative;
  min-height: 280px;
  background: url('bgCTA.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-title {
  font-family: 'Bodoni Moda SC', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-align: center;
  transition: opacity 0.2s;
  line-height: 1;
}

.cta-title:hover {
  opacity: 0.8;
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.cta-title:hover .cta-arrow {
  transform: translateX(8px);
}

.cta-line {
  width: 120px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.cta-instagram {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.cta-instagram:hover {
  opacity: 0.7;
}

.cta-privacy {
  position: absolute;
  bottom: 20px;
  left: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.cta-privacy:hover {
  color: var(--white);
}

/* FAQ */
.faq {
  background: transparent;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 28px 0;
  cursor: pointer;
}

.faq-question {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 640px;
}

/* FOOTER */
.footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 32px 40px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* =====================
   TABLET — max 1024px
   ===================== */
@media (max-width: 1024px) {
  .page-wrapper { max-width: 100%; }

  /* Navbar */
  .nav-links { gap: 0; }
  .nav-links a { font-size: 12px; letter-spacing: 0.15em; }

  /* Hero */
  .hero-title { padding: 0 32px 48px; }
  .hero-tagline { padding: 12px 32px 0; }

  /* Why section */
  .why-header { padding: 60px 32px 40px; }
  .acc-header { padding: 24px 32px; }
  .acc-body { padding: 0 32px 40px; gap: 32px; }

  /* Photo collage */
  .photo-grid-section { padding: 40px 32px; }
  .kolaz-wrap { border-width: 5px; }

  /* FAQ */
  .faq-section { padding: 60px 32px 80px; }
  .faq-divider { width: 80%; }
  .faq-header { padding: 18px 20px 18px 28px; }
  .faq-answer { padding: 24px 20px 28px 28px; }

  /* Contact */
  .contact-section { padding: 80px 32px; }
  .contact-heading { font-size: clamp(44px, 6vw, 72px); }
  .contact-cards { gap: 12px; }

  /* CTA */
  .cta-title { font-size: clamp(40px, 6vw, 72px); }
  .cta-privacy { left: 32px; }
}

/* =====================
   MOBILE — max 768px
   ===================== */
@media (max-width: 768px) {

  /* Navbar — hamburger */
  .nav-inner { padding: 0 20px; height: 60px; justify-content: space-between; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; width: 100%; background: rgba(0,0,0,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 24px 0; gap: 0; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 28px; font-size: 13px; letter-spacing: 0.2em; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .nav-links a:last-child { border-bottom: none; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Hero */
  .hero { padding-top: 60px; min-height: 100svh; }
  .hero-tagline { padding: 12px 20px 0; font-size: 14px; }
  .hero-title { padding: 0 20px 36px; }
  .hero-title h1 { font-size: clamp(48px, 14vw, 80px); }

  /* Why section */
  .why-header { padding: 48px 20px 32px; }
  .why-header h2 { font-size: clamp(30px, 8vw, 52px); }
  .acc-header { padding: 20px; gap: 16px; }
  .acc-num { font-size: 14px; min-width: 36px; }
  .acc-title { font-size: clamp(17px, 5vw, 26px); }
  .acc-body { grid-template-columns: 1fr; padding: 0 20px 32px; gap: 20px; }
  .acc-right p { font-size: 14px; line-height: 1.7; }
  .acc-bullet { font-size: 13px; padding: 12px 0; }

  /* Photo collage */
  .photo-grid-section { padding: 28px 16px; }
  .kolaz-wrap { border-width: 3px; padding: 5px; max-width: 100%; }

  /* FAQ */
  .faq-section { padding: 48px 16px 64px; }
  .faq-container { max-width: 100%; }
  .faq-title { font-size: clamp(34px, 9vw, 56px); margin-bottom: 24px; }
  .faq-divider { width: 100%; margin-bottom: 32px; }
  .faq-group { gap: 6px; margin-bottom: 16px; }
  .faq-header { padding: 15px 14px 15px 18px; gap: 10px; }
  .faq-icon { font-size: 20px; min-width: 20px; }
  .faq-question { font-size: 13px; line-height: 1.4; }
  .faq-answer { padding: 18px 14px 22px 18px; }
  .faq-answer p { font-size: 13px; line-height: 1.7; }

  /* Contact page */
  .contact-section { padding: 80px 20px 60px; min-height: auto; }
  .contact-top { flex-direction: column; gap: 20px; }
  .contact-sub { max-width: 100%; padding-top: 0; font-size: 14px; }
  .contact-heading { font-size: clamp(38px, 10vw, 64px); }
  .contact-cards { grid-template-columns: 1fr; gap: 12px; }
  .contact-card { padding: 36px 24px 32px; }
  .contact-card-label { font-size: 20px; }

  /* CTA */
  .cta-section { min-height: 240px; }
  .cta-inner { padding: 52px 20px 60px; gap: 18px; }
  .cta-title { font-size: clamp(30px, 9vw, 56px); }
  .cta-privacy { left: 20px; bottom: 18px; font-size: 9px; }

  /* Privacy policy */
  .pp-page { padding: 100px 20px 60px; }
  .pp-title { font-size: clamp(28px, 8vw, 44px); }
}

/* =====================
   SMALL MOBILE — max 480px
   ===================== */
@media (max-width: 480px) {
  .hero-title h1 { font-size: clamp(40px, 16vw, 64px); }
  .why-header h2 { font-size: clamp(26px, 9vw, 42px); }
  .acc-title { font-size: clamp(16px, 5.5vw, 24px); }
  .acc-body { padding: 0 16px 28px; }
  .faq-title { font-size: clamp(28px, 11vw, 44px); }
  .faq-question { font-size: 12.5px; }
  .cta-title { font-size: clamp(26px, 11vw, 44px); }
  .contact-heading { font-size: clamp(32px, 11vw, 52px); }
  .photo-grid-section { padding: 24px 12px; }
  .kolaz-wrap { border-width: 2px; padding: 4px; }
}
