:root {
  --bg: #f7f6f4;
  --bg-alt: #f0ede8;
  --bg-dark: #1c1a17;
  --txt: #2a2520;
  --txt-muted: #6b6560;
  --txt-lt: #f7f6f4;
  --acc: #d4521a;
  --acc-hover: #b8431a;
  --acc-light: rgba(212,82,26,0.1);
  --acc-light2: rgba(212,82,26,0.06);
  --border: #e2ddd7;
  --border-dark: #3a3530;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(28,26,23,0.08), 0 1px 2px rgba(28,26,23,0.06);
  --shadow-md: 0 4px 12px rgba(28,26,23,0.10), 0 2px 6px rgba(28,26,23,0.07);
  --shadow-lg: 0 10px 32px rgba(28,26,23,0.13), 0 4px 12px rgba(28,26,23,0.09);
  --shadow-xl: 0 20px 60px rgba(28,26,23,0.18), 0 8px 20px rgba(28,26,23,0.10);
  --rad-sm: 6px;
  --rad: 12px;
  --rad-lg: 20px;
  --rad-xl: 32px;
  --nav-h: 72px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, section { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--acc); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--acc-hover); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Gabarito', sans-serif;
  line-height: 1.2;
  color: var(--txt);
  font-weight: 700;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.cnt {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.cnt-narrow { max-width: 820px; }

.sec {
  padding: 80px 0;
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 12px;
}

.sec-label-lt { color: rgba(255,255,255,0.7); }

.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--txt);
}

.sec-title-lt { color: var(--txt-lt); }

.sec-hdr {
  text-align: center;
  margin-bottom: 56px;
}

.sec-sub {
  font-size: 1.05rem;
  color: var(--txt-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


.hdr-nav {
  position: relative;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.hdr-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hdr-logo-img { width: 36px; height: 36px; }

.hdr-logo-txt {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--txt);
  white-space: nowrap;
}

.hdr-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hdr-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--txt);
  padding: 8px 14px;
  border-radius: var(--rad-sm);
  position: relative;
  transition: var(--transition);
}

.hdr-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--acc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.hdr-link:hover { color: var(--acc); }
.hdr-link:hover::after, .hdr-link.active::after { transform: scaleX(1); }
.hdr-link.active { color: var(--acc); }

.hdr-cta {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--acc);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--rad-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.hdr-cta:hover {
  background: var(--acc-hover);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--rad-sm);
  transition: var(--transition);
}

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: var(--transition);
}

.hdr-burger:hover span { background: var(--acc); }


.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.mob-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mob-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--bg-dark);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.mob-panel.open { transform: translateX(0); }

.mob-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--txt-lt);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--rad-sm);
  transition: var(--transition);
  margin-bottom: 32px;
}

.mob-close:hover { color: var(--acc); }

.mob-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-links li a {
  display: block;
  font-family: 'Gabarito', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--txt-lt);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  opacity: 0;
  transform: translateX(-20px);
  transition: color 0.25s ease, opacity 0.3s ease calc(var(--i) * 0.07s), transform 0.3s ease calc(var(--i) * 0.07s);
}

.mob-panel.open .mob-links li a {
  opacity: 1;
  transform: translateX(0);
}

.mob-links li a:hover { color: var(--acc); }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,26,23,0.82) 0%, rgba(28,26,23,0.55) 60%, rgba(212,82,26,0.25) 100%);
}

.hero-cnt {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-tag {
  display: inline-block;
  background: var(--acc);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--acc);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(247,246,244,0.82);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247,246,244,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(247,246,244,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}


.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acc);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--rad-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn-pri:hover {
  background: var(--acc-hover);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--rad-sm);
  border: 1.5px solid rgba(247,246,244,0.4);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(247,246,244,0.1);
  border-color: rgba(247,246,244,0.7);
  color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

.lnk-acc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--acc);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
}

.lnk-acc:hover { gap: 10px; color: var(--acc-hover); }


.sec-intro { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-txt { }

.intro-txt h2 { margin-bottom: 20px; }
.intro-txt p { color: var(--txt-muted); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.75; }

.intro-img {
  position: relative;
}

.intro-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-xl);
}

.intro-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--acc);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--rad);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.intro-img-badge i { font-size: 1.5rem; }


.sec-accent-bg {
  background: var(--bg-dark);
}


.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.topic-crd {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rad);
  padding: 32px 24px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.topic-crd:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--acc);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.topic-ico {
  width: 52px;
  height: 52px;
  background: var(--acc);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
}

.topic-crd:hover .topic-ico {
  transform: scale(1.1);
}

.topic-crd h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt-lt);
  margin-bottom: 12px;
}

.topic-crd p {
  font-size: 0.875rem;
  color: rgba(247,246,244,0.65);
  line-height: 1.65;
}


.sec-accordion { background: var(--bg); }

.acc-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.acc-side h2 { margin-bottom: 16px; }
.acc-side-txt { color: var(--txt-muted); margin-bottom: 32px; font-size: 1rem; line-height: 1.7; }

.acc-side-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--rad);
  box-shadow: var(--shadow-md);
}

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

.acc-item {
  border-bottom: 1px solid var(--border);
}

.acc-item:first-child { border-top: 1px solid var(--border); }

.acc-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: var(--transition);
}

.acc-btn:hover .acc-btn-txt { color: var(--acc); }

.acc-btn-ico {
  width: 36px;
  height: 36px;
  background: var(--acc-light);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.acc-item:has(.acc-btn[aria-expanded="true"]) .acc-btn-ico {
  background: var(--acc);
  color: var(--white);
}

.acc-btn-txt {
  flex: 1;
  font-family: 'Gabarito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt);
  transition: var(--transition);
}

.acc-btn-arr {
  color: var(--txt-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.acc-btn[aria-expanded="true"] .acc-btn-arr { transform: rotate(180deg); }
.acc-btn[aria-expanded="true"] .acc-btn-arr { color: var(--acc); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-body-inner {
  padding: 0 0 20px 52px;
}

.acc-body p {
  color: var(--txt-muted);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.acc-body p:last-child { margin-bottom: 0; }


.sec-how { background: var(--white); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(33.33% + 16px);
  right: calc(33.33% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--acc), var(--acc));
  opacity: 0.3;
}

.how-crd {
  background: var(--bg);
  border-radius: var(--rad-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.how-crd:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--acc);
}

.how-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--acc-light);
  line-height: 1;
  margin-bottom: 8px;
  color: rgba(212,82,26,0.12);
}

.how-ico {
  width: 56px;
  height: 56px;
  background: var(--acc);
  border-radius: var(--rad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(212,82,26,0.3);
  transition: var(--transition);
}

.how-crd:hover .how-ico {
  transform: scale(1.1) rotate(-5deg);
}

.how-crd h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.how-crd p {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.7;
}


.sec-gallery { background: var(--bg-alt); }

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

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad);
  box-shadow: var(--shadow-md);
}

.gal-wide { grid-column: span 2; }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gal-item:hover img { transform: scale(1.08); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay span {
  color: var(--white);
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}


.sec-cta-banner { background: var(--bg); }

.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2520 100%);
  border-radius: var(--rad-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,82,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-ico {
  width: 72px;
  height: 72px;
  background: var(--acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(212,82,26,0.4);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--txt-lt);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(247,246,244,0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}


.sec-articles { background: var(--white); }

.art-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.art-crd {
  background: var(--bg);
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.art-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,82,26,0.2);
}

.art-crd:has(.art-img-wrap) { }

.art-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.art-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.art-crd:hover .art-img-wrap img { transform: scale(1.05); }

.art-tag {
  display: inline-block;
  background: var(--acc);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.art-img-wrap .art-tag {
  position: absolute;
  top: 16px;
  left: 16px;
}

.art-tag-sm {
  display: inline-block;
  margin-bottom: 8px;
}

.art-body { padding: 24px; }

.art-date {
  display: block;
  font-size: 0.75rem;
  color: var(--txt-muted);
  margin-bottom: 10px;
}

.art-body h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.art-body p {
  font-size: 0.875rem;
  color: var(--txt-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}


.pg-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
}

.pg-hero-sm { min-height: 40vh; }
.pg-hero-podcast { min-height: 55vh; }

.pg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pg-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.88) 0%, rgba(28,26,23,0.5) 60%, rgba(28,26,23,0.3) 100%);
}

.pg-hero-cnt {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}

.pg-hero-cnt h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}

.pg-hero-cnt p {
  color: rgba(247,246,244,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

.pod-hero-ico {
  font-size: 3rem;
  color: var(--acc);
  margin-bottom: 20px;
}


.sec-article { background: var(--white); }

.art-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.art-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--txt-muted);
}

.art-meta span i { color: var(--acc); }

.art-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--acc-light);
}

.art-content h2:first-child { margin-top: 0; }

.art-content p {
  font-size: 1.05rem;
  color: var(--txt-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.art-highlight {
  background: var(--acc-light2);
  border-left: 4px solid var(--acc);
  border-radius: 0 var(--rad) var(--rad) 0;
  padding: 28px 32px;
  margin: 40px 0;
  position: relative;
}

.art-highlight i {
  color: var(--acc);
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.6;
}

.art-highlight p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--txt);
  line-height: 1.7;
  margin: 0;
}

.art-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--rad-lg);
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
}

.art-equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.art-equip-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 24px;
  transition: var(--transition);
}

.art-equip-item:hover {
  border-color: var(--acc);
  box-shadow: var(--shadow-md);
}

.art-equip-ico {
  width: 44px;
  height: 44px;
  background: var(--acc-light);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.art-equip-item h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.art-equip-item p {
  font-size: 0.85rem;
  color: var(--txt-muted);
  line-height: 1.6;
  margin: 0;
}

.art-cta-box {
  background: var(--bg-dark);
  border-radius: var(--rad-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.art-cta-box h3 {
  color: var(--txt-lt);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.art-cta-box p {
  color: rgba(247,246,244,0.7);
  margin-bottom: 24px;
}


.int-list { display: flex; flex-direction: column; gap: 60px; }

.int-crd {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.int-crd-rev { direction: rtl; }
.int-crd-rev > * { direction: ltr; }

.int-img-wrap {
  position: relative;
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.int-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.int-crd:hover .int-img-wrap img { transform: scale(1.04); }

.int-city {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--acc);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.int-body h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  margin-top: 12px;
  line-height: 1.3;
}

.int-body > p {
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.int-qa { margin-bottom: 20px; }

.int-q, .int-a {
  padding: 16px 20px;
  border-radius: var(--rad-sm);
  margin-bottom: 8px;
}

.int-q {
  background: var(--bg-alt);
  border-left: 3px solid var(--border);
}

.int-a {
  background: var(--acc-light2);
  border-left: 3px solid var(--acc);
}

.int-q-label, .int-a-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--txt-muted);
}

.int-a-label { color: var(--acc); }

.int-q p, .int-a p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--txt);
  margin: 0;
  font-style: italic;
}


.pod-grid { display: flex; flex-direction: column; gap: 24px; }

.pod-crd {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pod-crd:hover {
  border-color: var(--acc);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.pod-crd-feat {
  background: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.pod-crd-feat:hover {
  border-color: var(--acc);
}

.pod-num {
  font-family: 'Gabarito', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.pod-crd-feat .pod-num { color: var(--acc); }

.pod-body { flex: 1; }

.pod-date {
  display: block;
  font-size: 0.75rem;
  color: var(--txt-muted);
  margin-bottom: 8px;
}

.pod-crd-feat .pod-date { color: rgba(247,246,244,0.5); }

.pod-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.pod-crd-feat .pod-body h3 { color: var(--txt-lt); }

.pod-body p {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pod-crd-feat .pod-body p { color: rgba(247,246,244,0.65); }

.pod-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pod-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--txt-muted);
}

.pod-crd-feat .pod-meta span { color: rgba(247,246,244,0.5); }
.pod-meta span i { color: var(--acc); }

.pod-player {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--rad-sm);
  padding: 12px 16px;
  margin-top: 16px;
}

.pod-play-btn {
  width: 40px;
  height: 40px;
  background: var(--acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(212,82,26,0.4);
}

.pod-play-btn:hover { transform: scale(1.1); background: var(--acc-hover); }

.pod-waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}

.pod-wave-bar {
  flex: 1;
  background: rgba(212,82,26,0.4);
  border-radius: 2px;
  transition: var(--transition);
}

.pod-player:hover .pod-wave-bar { background: rgba(212,82,26,0.7); }

.pod-duration {
  font-size: 0.8rem;
  color: rgba(247,246,244,0.5);
  flex-shrink: 0;
}

.pod-about {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.pod-about-ico {
  font-size: 3rem;
  color: var(--acc);
  flex-shrink: 0;
  margin-top: 4px;
}

.pod-about-txt h2 { color: var(--txt-lt); margin-bottom: 16px; }
.pod-about-txt p { color: rgba(247,246,244,0.7); line-height: 1.75; margin-bottom: 16px; }


.sec-contact-hero { background: var(--white); padding-top: 80px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h1 { margin-bottom: 20px; }
.contact-info > p { color: var(--txt-muted); line-height: 1.75; margin-bottom: 40px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--acc);
  box-shadow: var(--shadow-md);
}

.contact-card-ico {
  width: 44px;
  height: 44px;
  background: var(--acc-light);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--txt-muted); line-height: 1.5; margin: 0; }
.contact-card a { color: var(--txt-muted); }
.contact-card a:hover { color: var(--acc); }

.access-note {
  background: var(--acc-light2);
  border: 1px solid rgba(212,82,26,0.15);
  border-radius: var(--rad);
  padding: 24px;
}

.access-note-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.access-note-hdr i { color: var(--acc); font-size: 1.3rem; }
.access-note-hdr h3 { font-size: 1rem; margin: 0; }

.access-note > p {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--txt-muted);
}

.access-list li i { color: var(--acc); font-size: 0.8rem; }


.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.frm { }

.frm-grp { margin-bottom: 20px; }

.frm-lbl {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 8px;
}

.frm-inp, .frm-txt {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--rad-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--txt);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.frm-inp:focus, .frm-txt:focus {
  border-color: var(--acc);
  box-shadow: 0 0 0 3px var(--acc-light);
}

.frm:has(.frm-inp:focus) .contact-form-wrap,
.frm:has(.frm-txt:focus) .contact-form-wrap {
  border-color: rgba(212,82,26,0.2);
}

.frm-txt { min-height: 120px; }

.frm-chk-grp { margin-bottom: 24px; }

.frm-chk-lbl {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--txt-muted);
  line-height: 1.55;
}

.frm-chk { position: absolute; opacity: 0; width: 0; height: 0; }

.frm-chk-custom {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
  transition: var(--transition);
  position: relative;
}

.frm-chk:checked + .frm-chk-custom {
  background: var(--acc);
  border-color: var(--acc);
}

.frm-chk:checked + .frm-chk-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.frm-err {
  background: #fef2f0;
  border: 1px solid #f8c4b4;
  color: #c0392b;
  border-radius: var(--rad-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  margin-bottom: 16px;
}


.sec-map { background: var(--bg-alt); }
.map-wrap { box-shadow: var(--shadow-lg); border-radius: var(--rad-lg); overflow: hidden; }


.sec-thanks {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  background: var(--white);
}

.thanks-cnt {
  text-align: center;
  padding: 80px 24px;
}

.thanks-ico {
  font-size: 5rem;
  color: var(--acc);
  margin-bottom: 32px;
  display: block;
}

.thanks-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.thanks-sub {
  font-size: 1.1rem;
  color: var(--txt-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


.sec-legal { background: var(--white); }

.legal-hdr {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--border);
}

.legal-hdr h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }

.legal-updated {
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-bottom: 20px;
  display: block;
}

.legal-intro {
  font-size: 1rem;
  color: var(--txt-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0;
}

.legal-body { display: flex; flex-direction: column; gap: 0; }

.legal-sec {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.legal-summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--acc-light2);
  border-radius: var(--rad-sm);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.legal-summary strong {
  font-size: 0.9rem;
  color: var(--acc);
  white-space: nowrap;
  flex-shrink: 0;
}

.legal-summary span {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.6;
}

.legal-detail p, .legal-detail ul {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-detail ul {
  padding-left: 20px;
  list-style: disc;
}

.legal-detail ul li { margin-bottom: 6px; }


.legal-body-terms { display: flex; flex-direction: column; gap: 8px; }

.terms-block {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.terms-letter {
  font-family: 'Gabarito', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--acc);
  opacity: 0.15;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  padding-top: 4px;
}

.terms-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.terms-summary-line {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--acc);
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--acc-light2);
  border-radius: var(--rad-sm);
}

.terms-content p, .terms-content ul {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.terms-content ul {
  padding-left: 20px;
  list-style: disc;
}

.terms-content ul li { margin-bottom: 6px; }


.cookies-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.legal-body-cookies { display: flex; flex-direction: column; gap: 0; }

.cookie-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-section h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--acc);
}

.cookie-section p {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.cookie-section ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 12px;
}

.cookie-section ul li {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.cookie-cat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 28px;
  margin-bottom: 20px;
}

.cookie-cat-required { border-color: rgba(212,82,26,0.2); }
.cookie-cat-analytics { border-color: rgba(59,130,246,0.2); }
.cookie-cat-marketing { border-color: rgba(107,114,128,0.2); }

.cookie-cat-hdr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cookie-cat-ico {
  width: 44px;
  height: 44px;
  background: var(--acc-light);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cookie-cat-card h3 { font-size: 1rem; margin-bottom: 4px; }

.cookie-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

.cookie-badge-req { background: var(--acc-light); color: var(--acc); }
.cookie-badge-opt { background: #e8f4fd; color: #3b82f6; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.85rem;
}

.cookie-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--bg-alt);
  color: var(--txt);
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.cookie-table td {
  padding: 10px 12px;
  color: var(--txt-muted);
  border-bottom: 1px solid var(--border);
}

.cookie-table tr:last-child td { border-bottom: none; }


.ftr {
  background: var(--bg-dark);
  padding: 72px 0 0;
  margin-top: auto;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}

.ftr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.ftr-logo-img { width: 32px; height: 32px; }

.ftr-logo span {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--txt-lt);
}

.ftr-desc {
  font-size: 0.875rem;
  color: rgba(247,246,244,0.55);
  line-height: 1.65;
  margin-bottom: 12px;
}

.ftr-disclaimer {
  font-size: 0.78rem;
  color: rgba(247,246,244,0.35);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.ftr-nav h4, .ftr-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,246,244,0.4);
  margin-bottom: 20px;
}

.ftr-nav ul { display: flex; flex-direction: column; gap: 10px; }

.ftr-nav ul li a {
  font-size: 0.875rem;
  color: rgba(247,246,244,0.65);
  text-decoration: none;
  transition: var(--transition);
}

.ftr-nav ul li a:hover { color: var(--acc); }

.ftr-contact ul { display: flex; flex-direction: column; gap: 12px; }

.ftr-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(247,246,244,0.65);
}

.ftr-contact ul li i { color: var(--acc); margin-top: 2px; flex-shrink: 0; }

.ftr-contact ul li a {
  color: rgba(247,246,244,0.65);
  text-decoration: none;
  transition: var(--transition);
}

.ftr-contact ul li a:hover { color: var(--acc); }

.ftr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.ftr-bottom p {
  font-size: 0.8rem;
  color: rgba(247,246,244,0.35);
  margin: 0;
}


.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--acc);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 90;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--acc-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}


.ck-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.ck-overlay.show { opacity: 1; pointer-events: all; }

.ck-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: var(--bg-dark);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(28,26,23,0.4);
}

.ck-panel.show { transform: translateX(0); }

.ck-panel-hdr {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ck-shield {
  width: 40px;
  height: 40px;
  background: var(--acc);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ck-panel-hdr h3 {
  color: var(--txt-lt);
  font-size: 1rem;
  margin: 0;
}

.ck-panel-hdr p {
  font-size: 0.75rem;
  color: rgba(247,246,244,0.5);
  margin: 0;
}

.ck-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.ck-panel-body p {
  font-size: 0.8rem;
  color: rgba(247,246,244,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}

.ck-cat { margin-bottom: 16px; }

.ck-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ck-cat-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--txt-lt);
}

.ck-cat-desc {
  font-size: 0.75rem;
  color: rgba(247,246,244,0.45);
  line-height: 1.5;
}

.ck-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.ck-toggle input { opacity: 0; width: 0; height: 0; }

.ck-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.ck-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.ck-toggle input:checked + .ck-toggle-slider { background: var(--acc); }
.ck-toggle input:checked + .ck-toggle-slider::before { transform: translateX(20px); }
.ck-toggle input:disabled + .ck-toggle-slider { cursor: not-allowed; opacity: 0.7; }

.ck-panel-ftr {
  padding: 20px 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ck-btn-accept {
  background: var(--acc);
  color: var(--white);
  border: none;
  border-radius: var(--rad-sm);
  padding: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.ck-btn-accept:hover { background: var(--acc-hover); }

.ck-btn-reject {
  background: transparent;
  color: rgba(247,246,244,0.5);
  border: 1px solid rgba(247,246,244,0.15);
  border-radius: var(--rad-sm);
  padding: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.ck-btn-reject:hover { border-color: rgba(247,246,244,0.4); color: rgba(247,246,244,0.8); }

.ck-link {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(247,246,244,0.3);
  padding-top: 4px;
}

.ck-link a { color: rgba(247,246,244,0.4); text-decoration: underline; }
.ck-link a:hover { color: var(--acc); }


@media (max-width: 1100px) {
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-layout { grid-template-columns: 1fr; gap: 48px; }
  .acc-side-img { height: 200px; }
  .art-grid { grid-template-columns: 1fr 1fr; }
  .art-crd-feat { grid-column: span 2; }
  .int-crd { grid-template-columns: 300px 1fr; gap: 36px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hdr-links { display: none; }
  .hdr-burger { display: flex; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-img-badge { bottom: 16px; left: 16px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-wide { grid-column: span 2; }
  .int-crd, .int-crd-rev { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  .int-img-wrap img { height: 260px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .pod-about { flex-direction: column; gap: 20px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .sec { padding: 56px 0; }
  .cnt { padding: 0 16px; }
  .hero-cnt { padding-top: 64px; }
  .hero-btns { flex-direction: column; }
  .btn-ghost, .btn-pri { text-align: center; justify-content: center; }
  .topics-grid { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr; }
  .art-crd-feat { grid-column: span 1; }
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-wide { grid-column: span 1; }
  .gal-item { height: 220px; }
  .cta-banner { padding: 48px 24px; }
  .ftr-grid { grid-template-columns: 1fr; gap: 28px; }
  .ftr-bottom { flex-direction: column; text-align: center; }
  .art-equip-grid { grid-template-columns: 1fr; }
  .acc-layout { gap: 32px; }
  .terms-block { gap: 16px; }
  .terms-letter { font-size: 2.5rem; width: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .back-top { bottom: 20px; right: 20px; }
  .pod-crd { flex-direction: column; gap: 16px; }
  .pod-num { font-size: 1.8rem; width: auto; }
  .legal-summary { flex-direction: column; gap: 8px; }
  .legal-summary strong { white-space: normal; }
  .int-crd { gap: 20px; }
  .ck-panel { width: 100%; }
}