:root {
  --bg: #fdf8f0;
  --surface: #f7e7cf;
  --surface-2: #efddb6;
  --card: rgba(255, 252, 246, 0.9);
  --gold: #b98b2c;
  --gold-2: #d8b15f;
  --orange: #d97d27;
  --orange-2: #efab5f;
  --text: #70543a;
  --text-strong: #4b341f;
  --muted: #967a60;
  --line: rgba(185, 139, 44, 0.18);
  --shadow-lg: 0 24px 80px rgba(160, 122, 52, 0.16);
  --shadow-md: 0 12px 34px rgba(160, 122, 52, 0.12);
  --shadow-glow: 0 0 0 1px rgba(217, 125, 39, 0.08), 0 18px 40px rgba(185, 139, 44, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 177, 95, 0.18), transparent 24%),
    radial-gradient(circle at 85% 0%, rgba(217, 125, 39, 0.13), transparent 22%),
    radial-gradient(circle at 50% 60%, rgba(185, 139, 44, 0.08), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
  line-height: 1.7;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 28px 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.2), rgba(255, 252, 246, 0.06)),
    radial-gradient(circle at top center, rgba(185, 139, 44, 0.06), transparent 50%);
  border-top: 1px solid rgba(185, 139, 44, 0.06);
  border-bottom: 1px solid rgba(185, 139, 44, 0.06);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(247, 231, 207, 0.88), rgba(255, 252, 246, 0.98));
  border-top: 1px solid rgba(185, 139, 44, 0.1);
  border-bottom: 1px solid rgba(185, 139, 44, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(185, 139, 44, 0.18);
  background: rgba(255, 252, 246, 0.78);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.section-title {
  margin: 16px 0 12px;
  color: var(--text-strong);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.section-copy {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.01rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 16px 28px rgba(217, 125, 39, 0.24);
}

.btn-secondary {
  color: var(--text-strong);
  background: rgba(255, 252, 246, 0.92);
  border-color: rgba(185, 139, 44, 0.18);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  border-color: rgba(217, 125, 39, 0.28);
  box-shadow: var(--shadow-glow);
}

.chip,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(185, 139, 44, 0.14);
  color: var(--muted);
  font-size: 0.92rem;
}

.glass,
.card,
.media-card,
.info-card,
.service-card,
.contact-card,
.video-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(246, 232, 209, 0.84));
  border: 1px solid rgba(185, 139, 44, 0.14);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 246, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(185, 139, 44, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-strong);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(217, 125, 39, 0.12), rgba(185, 139, 44, 0.18));
  border: 1px solid rgba(185, 139, 44, 0.16);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-wide {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--text);
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(185, 139, 44, 0.16);
  background: rgba(255, 252, 246, 0.96);
  color: var(--text-strong);
}

.nav-actions .menu-toggle {
  display: inline-grid;
  place-items: center;
}

.hero {
  padding: 28px 0 22px;
}

.hero-editorial {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 28px;
  border-radius: 42px;
  border: 1px solid rgba(185, 139, 44, 0.16);
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 125, 39, 0.14), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(216, 177, 95, 0.2), transparent 20%),
    linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(243, 223, 190, 0.9));
  box-shadow: var(--shadow-lg);
}

.hero-panel {
  position: relative;
  border-radius: 34px;
  padding: 30px;
  border: 1px solid rgba(185, 139, 44, 0.12);
  overflow: hidden;
}

.hero-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(248, 232, 206, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-kicker {
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-intro {
  margin: 0;
  max-width: 560px;
  font-size: 1.04rem;
  color: var(--muted);
}

.hero-panel-copy,
.hero-panel-copy h1 {
  text-wrap: balance;
}

.hero-panel-copy h1 {
  margin: 14px 0 16px;
  color: var(--text-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.hero-metrics-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-panel-media {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.62), rgba(242, 221, 185, 0.42)),
    radial-gradient(circle at 80% 20%, rgba(217, 125, 39, 0.12), transparent 28%);
}

.hero-media-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(185, 139, 44, 0.14);
  box-shadow: var(--shadow-md);
  background: rgba(255, 252, 246, 0.92);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-large {
  min-height: 520px;
}

.hero-media-large figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.9);
  color: var(--text-strong);
  font-size: 0.9rem;
  border: 1px solid rgba(185, 139, 44, 0.12);
}

.hero-media-small {
  min-height: 250px;
}

.hero-media-small + .hero-media-small {
  margin-top: 14px;
}

.hero-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.hero-aside-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.88);
  border: 1px solid rgba(185, 139, 44, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-aside-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text-strong);
  font-size: 1.08rem;
}

.hero-aside-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.hero-aside-card-alt {
  display: grid;
  align-content: start;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(247, 231, 207, 0.92));
}

.hero-aside-card-alt .btn {
  width: 100%;
}

.page-band {
  padding: 64px 0 24px;
}

.page-card {
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(217, 125, 39, 0.12), transparent 36%),
    radial-gradient(circle at 20% 10%, rgba(216, 177, 95, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(243, 223, 190, 0.9));
  border: 1px solid rgba(185, 139, 44, 0.16);
  box-shadow: var(--shadow-glow);
}

.page-card h1 {
  margin: 16px 0 10px;
  color: var(--text-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.page-card p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
}

.grid {
  display: grid;
  gap: 24px;
}

.about-grid,
.contact-grid,
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.card,
.media-card,
.info-card,
.service-card,
.contact-card,
.video-card {
  border-radius: var(--radius-xl);
}

.card,
.info-card,
.service-card,
.contact-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card h3,
.card-title,
.info-card h3 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

.card p,
.info-card p,
.service-card p,
.contact-card p,
.video-card p,
.section-note {
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 14px;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-bullet {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(238, 138, 45, 0.12), rgba(199, 154, 54, 0.18));
  font-weight: 800;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-head .section-title {
  max-width: 780px;
}

.section-head .section-copy {
  max-width: 700px;
}

.services-showcase {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-feature {
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(185, 139, 44, 0.14);
  background:
    radial-gradient(circle at top right, rgba(217, 125, 39, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(246, 232, 209, 0.84));
  box-shadow: var(--shadow-md);
}

.service-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--text-strong);
  background: linear-gradient(135deg, rgba(217, 125, 39, 0.15), rgba(216, 177, 95, 0.22));
  border: 1px solid rgba(185, 139, 44, 0.14);
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
}

.service-feature h3 {
  margin: 18px 0 12px;
  color: var(--text-strong);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.service-feature p {
  margin: 0;
  color: var(--muted);
}

.services-carousel {
  padding: 18px 4px 64px;
}

.services-carousel .swiper-slide {
  height: auto;
  display: flex;
}

.services-carousel .service-card {
  width: 100%;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(242, 221, 185, 0.86));
  border: 1px solid rgba(185, 139, 44, 0.14);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card-accent {
  background:
    radial-gradient(circle at top right, rgba(217, 125, 39, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 246, 1), rgba(247, 231, 207, 0.9));
}

.service-card:hover,
.media-card:hover,
.video-card:hover,
.card:hover,
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(160, 122, 52, 0.18);
  border-color: rgba(217, 125, 39, 0.24);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(217, 125, 39, 0.14), rgba(185, 139, 44, 0.22));
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid rgba(185, 139, 44, 0.12);
  color: var(--muted);
  font-size: 0.9rem;
}

.media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(243, 223, 190, 0.82));
  display: flex;
  flex-direction: column;
  height: 100%;
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #fff;
}

.media-body {
  padding: 18px 20px 22px;
}

.video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 34px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #fff;
  flex: 1 1 auto;
  min-height: 0;
}

.video-body {
  padding: 18px 20px 22px;
}

.podcast-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.podcast-stack {
  display: grid;
  gap: 18px;
}

.podcast-note {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(185, 139, 44, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(247, 231, 207, 0.84));
  box-shadow: var(--shadow-md);
}

.podcast-note p {
  margin: 12px 0 0;
  color: var(--muted);
}

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(242, 221, 185, 0.88));
  border: 1px solid rgba(185, 139, 44, 0.14);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 125, 39, 0.22);
  box-shadow: var(--shadow-glow);
}

.social-link strong {
  display: block;
  color: var(--text-strong);
}

.social-link span {
  color: var(--muted);
  font-size: 0.93rem;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(217, 125, 39, 0.14), rgba(185, 139, 44, 0.22));
  flex: 0 0 auto;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(249, 237, 220, 0.76), rgba(243, 223, 190, 0.62));
  border: 1px solid rgba(185, 139, 44, 0.12);
}

.contact-item i {
  color: var(--gold);
  margin-top: 2px;
  width: 24px;
  text-align: center;
  flex: 0 0 auto;
}

.contact-item strong {
  display: block;
  color: var(--text-strong);
}

.contact-item p {
  margin: 2px 0 0;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--text-strong);
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(185, 139, 44, 0.18);
  background: rgba(255, 252, 246, 0.98);
  color: var(--text-strong);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(217, 125, 39, 0.45);
  box-shadow: 0 0 0 4px rgba(217, 125, 39, 0.08);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.notice {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer {
  padding: 78px 0 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 125, 39, 0.12), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(216, 177, 95, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(247, 231, 207, 0.98), rgba(255, 252, 246, 1));
  border-top: 1px solid rgba(185, 139, 44, 0.08);
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(199, 154, 54, 0.12);
}

.footer-brand {
  max-width: 620px;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 560px;
  color: var(--muted);
}

.footer-cta {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr;
  gap: 28px;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--text-strong);
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer a,
.footer p,
.footer li {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(199, 154, 54, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.socials a,
.floating-whatsapp {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.98);
  border: 1px solid rgba(185, 139, 44, 0.16);
  color: var(--gold);
  box-shadow: var(--shadow-md);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
}

.swiper {
  padding: 0 0 54px;
}

.swiper-pagination-bullet {
  background: rgba(185, 139, 44, 0.35);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.swiper-button-next,
.swiper-button-prev {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(185, 139, 44, 0.16);
  color: var(--text-strong);
  box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
  display: none;
}

.hero .swiper-button-prev {
  left: auto;
  right: 84px;
}

.hero .swiper-button-next {
  right: 24px;
}

.services-carousel .swiper-button-next,
.services-carousel .swiper-button-prev {
  top: auto;
  bottom: 0;
}

.services-carousel .swiper-button-prev {
  left: auto;
  right: 72px;
}

.services-carousel .swiper-button-next {
  right: 20px;
}

.services-carousel .swiper-pagination {
  bottom: 12px !important;
}

@media (max-width: 1100px) {
  .about-grid,
  .contact-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .social-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-editorial,
  .podcast-layout {
    grid-template-columns: 1fr;
  }

  .hero-media-large {
    min-height: 420px;
  }

  .services-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 74px 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(199, 154, 54, 0.14);
    box-shadow: var(--shadow-lg);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(199, 154, 54, 0.08);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 18px;
  }

  .services-grid,
  .social-grid,
  .media-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-editorial,
  .hero-panel {
    padding: 20px;
    border-radius: 28px;
  }

  .hero-panel-copy h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .hero-media-grid,
  .hero-aside,
  .services-showcase {
    grid-template-columns: 1fr;
  }

  .hero-media-large {
    min-height: 360px;
  }

  .hero-media-small {
    min-height: 220px;
  }

  .service-feature,
  .podcast-note {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .page-band {
    padding-top: 48px;
  }

  .page-card,
  .card,
  .info-card,
  .service-card,
  .service-feature,
  .contact-card,
  .video-card,
  .podcast-note,
  .media-body,
  .video-body {
    padding: 20px;
  }

  .hero-panel-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .section-title {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .social-link,
  .contact-item {
    padding: 18px;
  }

  .btn {
    min-height: 54px;
    width: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .info-card .btn,
  .card .btn,
  .contact-card .btn {
    width: 100%;
  }

  .nav-actions {
    width: auto;
    flex-direction: row;
    align-items: center;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 42px;
    height: 42px;
  }

  .hero .swiper-button-prev {
    right: 66px;
  }

  .hero .swiper-button-next {
    right: 12px;
  }

  .services-carousel .swiper-button-prev {
    right: 60px;
  }

  .services-carousel .swiper-button-next {
    right: 12px;
  }

  .hero-panel-copy h1 {
    line-height: 0.96;
  }

  .footer-top {
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .footer {
    padding-top: 62px;
  }
}
