:root {
  --yellow: #ffd000;
  --yellow-dark: #f5b800;
  --black: #0b0f14;
  --graphite: #171c22;
  --graphite-soft: #202833;
  --light: #f6f6f6;
  --white: #ffffff;
  --red: #c40000;
  --purple: #6f2dbd;
  --purple-dark: #4f1f89;
  --green: #1f9d55;
  --green-dark: #157347;
  --text: #14181d;
  --muted: #68707b;
  --border: rgba(11, 15, 20, 0.08);
  --shadow: 0 16px 40px rgba(11, 15, 20, 0.12);
  --shadow-soft: 0 8px 20px rgba(11, 15, 20, 0.08);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  font-family: "Exo 2", "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: #f5f5f5;
  line-height: 1.65;
  min-width: 320px;
  padding-bottom: calc(126px + env(safe-area-inset-bottom));
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 120;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 36px 0;
}

.section-tight {
  padding: 36px 0;
}

.section-dark {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 208, 0, 0.08), transparent 28%),
    linear-gradient(180deg, var(--graphite) 0%, var(--black) 100%);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%),
    radial-gradient(circle at top left, rgba(255, 208, 0, 0.14), transparent 25%);
  pointer-events: none;
}

.section-header {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}

.section-copy {
  max-width: 740px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.section h1,
.section h2,
.section h3,
.section h4,
.hero-content h1,
.page-hero-copy h1,
.footer-brand strong {
  font-family: "Exo 2", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.section h2,
.faq-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-header p,
.hero-content p,
.page-hero-copy p,
.content-block p,
.cta-card p,
.footer-grid p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(4, 6, 9, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-wrap {
  width: clamp(150px, 45vw, 165px);
  height: 46px;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
}

.logo-wrap img {
  width: 100%;
  max-height: 46px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  display: block;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.28));
}

.footer-logo {
  width: min(190px, 100%);
  height: 58px;
}

.footer-logo img {
  width: 190px;
  max-height: 58px;
}

.brand-meta {
  display: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-toggle svg,
.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  padding: 16px;
  background: rgba(4, 6, 9, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.active {
  background: rgba(255, 208, 0, 0.12);
  color: var(--yellow);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.3) 0%, rgba(5, 8, 12, 0.7) 45%, rgba(5, 8, 12, 0.96) 100%),
    radial-gradient(circle at bottom left, rgba(255, 208, 0, 0.12), transparent 28%);
  z-index: 1;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media img {
  object-position: center center;
}

.page-hero-media img {
  object-position: center center;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  min-height: calc(100svh - var(--header-height));
  padding: 82px 0 135px;
  max-width: 360px;
}

.hero-content h1 {
  font-size: clamp(38px, 9vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  max-width: 11ch;
  margin: 0 0 16px;
}

.hero-title-accent {
  color: var(--yellow);
}

.hero-content .eyebrow {
  font-size: 12px;
  margin-bottom: 18px;
}

.hero-content > p {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  max-width: 360px;
  margin-bottom: 18px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 11px 14px;
  background: rgba(255, 208, 0, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 208, 0, 0.38);
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.button-row {
  display: grid;
  gap: 10px;
}

.hero-call {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  font-size: 17px;
  box-shadow: 0 12px 28px rgba(255, 208, 0, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 15, 20, 0.18);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(180deg, #ffd83d 0%, var(--yellow) 100%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #ffe362 0%, var(--yellow-dark) 100%);
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(180deg, rgba(111, 45, 189, 0.94) 0%, rgba(79, 31, 137, 0.98) 100%);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(180deg, #7d39ca 0%, #5a2696 100%);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(180deg, #24b865 0%, var(--green) 100%);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: linear-gradient(180deg, #2dcf73 0%, var(--green-dark) 100%);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(255, 208, 0, 0.55);
  background: rgba(255, 208, 0, 0.08);
}

.stats-grid,
.chips,
.page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge,
.chip,
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-badges .badge,
.page-tags .badge {
  padding: 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 14px;
}

.badge .icon,
.stat-chip .icon,
.service-card-link .icon,
.cta-card .icon,
.feature-card .icon,
.faq-question .icon,
.footer-list .icon,
.contact-card .icon {
  width: 18px;
  height: 18px;
}

.quick-grid,
.why-grid,
.location-grid,
.gallery-grid,
.content-grid,
.story-grid,
.footer-grid,
.contact-grid,
.service-links-grid {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.quick-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.why-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card,
.feature-card,
.equipment-card,
.cta-card,
.contact-card,
.faq-item,
.gallery-card,
.content-block,
.story-card,
.location-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.service-card,
.equipment-card,
.content-block,
.story-card,
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.service-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.service-card-anchor {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.06) 0%, rgba(255, 255, 255, 0) 44%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 15, 20, 0.1);
  border-color: rgba(255, 208, 0, 0.22);
}

.service-card:hover::before,
.service-card:focus-within::before,
.service-card:active::before {
  opacity: 1;
}

.service-card:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 8px 18px rgba(11, 15, 20, 0.14);
}

.service-card-body {
  display: grid;
  gap: 8px;
}

.service-icon,
.feature-icon,
.contact-icon,
.story-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 auto;
}

.service-icon-image,
.feature-icon-image,
.hero-badge-icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-icon {
  color: var(--black);
  background: linear-gradient(180deg, #ffe46a 0%, var(--yellow) 100%);
}

.service-icon-asset,
.feature-icon-asset {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.service-icon-asset .service-icon-image,
.feature-icon-asset .feature-icon-image {
  width: 100%;
  height: 100%;
}

.service-card h3,
.feature-card h3,
.equipment-copy h3,
.cta-card h3,
.contact-card h3,
.story-card h3,
.content-block h2,
.content-block h3 {
  font-family: "Exo 2", sans-serif;
  line-height: 1.16;
  margin: 0;
}

.service-card h3 {
  font-size: 15px;
  line-height: 1.25;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  font-size: 12px;
  font-weight: 800;
  color: #1a2028;
  opacity: 0.86;
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.service-card:hover .service-card-cta,
.service-card:focus-visible .service-card-cta,
.service-card:focus-within .service-card-cta {
  color: #c89600;
  opacity: 1;
  transform: translateX(1px);
}

.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  display: block;
}

.service-card-link,
.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  justify-content: flex-start;
  white-space: nowrap;
}

.service-card-link {
  color: #111;
  background: transparent;
  transition: transform 0.16s ease, color 0.16s ease, opacity 0.16s ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  color: #0b0f14;
}

.service-card-link:active {
  transform: translateX(1px);
}

.inline-action {
  color: var(--yellow);
  background: var(--black);
  min-height: 36px;
  padding: 8px 12px;
  justify-content: center;
  font-size: 12px;
}

.feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  text-align: left;
  border-radius: 20px;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.18), transparent 70%);
}

.feature-icon {
  color: var(--yellow);
  background: rgba(255, 208, 0, 0.1);
  margin: 0;
  width: 44px;
  height: 44px;
}

.feature-copy {
  display: grid;
  gap: 8px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.feature-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.74);
}

.equipment-layout,
.story-layout,
.page-layout {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.equipment-feature-card {
  display: grid;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(255, 208, 0, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

.equipment-card,
.story-card,
.page-hero-card {
  overflow: hidden;
}

.equipment-image img,
.story-visual img,
.content-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-image {
  position: relative;
}

.equipment-feature-card .equipment-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 24, 0.28) 100%);
  pointer-events: none;
}

.equipment-feature-card .equipment-image img {
  height: 280px;
  object-position: center center;
}

.equipment-image-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.equipment-image-badge-icon {
  width: 18px;
  height: 18px;
  color: #ffd000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.equipment-copy,
.story-copy {
  padding: 24px;
}

.equipment-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 20px 28px;
}

.equipment-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9a500;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.equipment-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 208, 0, 0.15), #ffd000 100%);
}

.equipment-copy h2 {
  font-size: clamp(2rem, 4.6vw, 2.95rem);
  line-height: 1.06;
  font-weight: 900;
  color: #111827;
}

.equipment-accent-line {
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd000 0%, #f2b100 100%);
}

.equipment-copy p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.52;
  color: #4b5563;
}

.equipment-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.equipment-badge {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 92px;
  padding: 13px 10px;
  text-align: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255, 208, 0, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  color: #111827;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
}

.equipment-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 208, 0, 0.18);
  color: #151b23;
}

.equipment-badge-icon .icon {
  width: 22px;
  height: 22px;
}

.equipment-badge-strong {
  background: linear-gradient(180deg, #fffdf6 0%, #fff7dc 100%);
}

.equipment-action {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  border-radius: 999px;
  justify-content: center;
  gap: 14px;
  color: #111827;
  background: linear-gradient(135deg, #ffd000, #ffb800);
  border: 1px solid rgba(226, 180, 0, 0.28);
  box-shadow: 0 14px 26px rgba(255, 208, 0, 0.28);
  font-size: 15.5px;
  font-weight: 900;
}

.equipment-action:hover,
.equipment-action:focus-visible {
  transform: translateY(-1px);
  color: #111827;
  box-shadow: 0 18px 32px rgba(255, 208, 0, 0.32);
}

.equipment-action .icon {
  width: 20px;
  height: 20px;
}

.text-accent-red {
  color: var(--red);
  font-weight: 800;
}

.spec-list,
.bullet-list,
.footer-list,
.related-links,
.detail-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.spec-list li,
.bullet-list li,
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.spec-list li::before,
.bullet-list li::before,
.detail-list li::before,
.footer-list li::before,
.related-links li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.48rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 208, 0, 0.15);
}

.spec-list strong,
.detail-list strong {
  display: block;
}

.story-card {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 2px solid rgba(255, 208, 0, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 208, 0, 0.09), transparent 40%),
    var(--white);
}

.story-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 220px;
  padding: 12px 12px 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.08), rgba(255, 255, 255, 0));
}

.story-visual img {
  width: min(100%, 360px);
  height: 220px;
  object-fit: contain;
  object-position: center bottom;
}

.story-icon {
  color: var(--black);
  background: linear-gradient(180deg, #ffe46a 0%, var(--yellow) 100%);
}

.story-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11, 15, 20, 0.05);
  color: var(--muted);
  font-size: 0.94rem;
  border-left: 4px solid var(--yellow);
}

.story-card-kombi {
  gap: 18px;
  padding: 26px 18px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 208, 0, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 0, 0.14), transparent 30%),
    radial-gradient(circle at left center, rgba(255, 208, 0, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.story-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.story-card-kombi .story-copy {
  display: grid;
  gap: 12px;
  padding: 0;
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9a500;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.story-kicker::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.story-card-kombi h2 {
  color: #111827;
  font-size: clamp(1.68rem, 6vw, 2rem);
  line-height: 1.08;
  margin: 0;
  max-width: 12ch;
}

.story-card-kombi .story-copy > p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.52;
  margin: 0;
}

.story-card-kombi .story-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 208, 0, 0.24);
  border-left: 0;
  color: #111827;
  font-size: 0.83rem;
  line-height: 1.4;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.story-note p {
  margin: 0;
}

.story-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7d7 0%, #ffefb0 100%);
  color: #111827;
  box-shadow: inset 0 0 0 1px rgba(255, 208, 0, 0.2);
}

.story-note-icon .icon {
  width: 22px;
  height: 22px;
}

.story-card-kombi .story-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 150px;
  margin: 10px 0 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.story-card-kombi .story-visual::after {
  content: "";
  position: absolute;
  inset: 22px 26px 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.18) 0%, rgba(255, 208, 0, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.story-card-kombi .story-visual img {
  width: 90%;
  max-width: 335px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  filter: drop-shadow(0 18px 30px rgba(17, 24, 39, 0.16));
  position: relative;
  z-index: 1;
}

.story-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.story-actions .btn {
  min-height: 54px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  margin-top: 2px;
  box-shadow: 0 14px 26px rgba(255, 208, 0, 0.20);
}

.story-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.story-benefit-chip {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 74px;
  padding: 10px 8px;
  text-align: center;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.story-benefit-chip .icon {
  width: 22px;
  height: 22px;
  color: #e0aa00;
}

.story-benefit-chip span {
  display: block;
}

.story-call-btn:hover,
.story-call-btn:focus-visible {
  background: rgba(17, 24, 39, 0.08);
}

.story-actions .btn .icon {
  width: 18px;
  height: 18px;
}

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

.chip {
  justify-content: center;
  padding: 11px 12px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  text-align: center;
}

.chip:hover,
.chip:focus-visible {
  transform: translateY(-2px);
}

.services-section {
  background: #f4f5f7;
  padding: 36px 0 28px;
}

.services-section .section-copy p {
  font-size: 15px;
  line-height: 1.45;
  color: #555;
}

.services-section .section-copy h2,
.why-section .section-copy h2 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.why-section .section-header {
  margin-bottom: 24px;
}

main > .section:last-of-type {
  padding-bottom: 84px;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  isolation: isolate;
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  transition: transform 0.35s ease;
}

.gallery-card button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
}

.gallery-card span {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(11, 15, 20, 0.9));
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.05);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(255, 208, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #111720 0%, #090d11 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 22px solid rgba(255, 255, 255, 0.06);
}

.cta-card h2,
.cta-card h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-card .button-row {
  margin-top: 24px;
}

.contact-grid,
.story-grid,
.content-grid {
  grid-template-columns: 1fr;
}

.contact-card {
  padding: 22px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(255, 208, 0, 0.2);
}

.contact-icon {
  color: var(--black);
  background: rgba(255, 208, 0, 0.18);
  margin-bottom: 14px;
}

.contact-card a {
  color: var(--graphite);
  font-weight: 700;
}

.services-header {
  justify-content: center;
  text-align: center;
}

.services-header .section-copy {
  max-width: 330px;
}

.why-section {
  background: transparent;
  color: var(--white);
  margin: 0;
  width: 100%;
  padding: 22px 0 14px;
}

.why-section .container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 22px 32px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 208, 0, 0.14), transparent 24%),
    radial-gradient(circle at 22% 92%, rgba(255, 208, 0, 0.1), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(44, 112, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #0e2237 0%, #0b1d2f 52%, #0e2237 100%);
  border: 1px solid rgba(255, 208, 0, 0.18);
  border-radius: 30px;
  box-shadow:
    0 26px 56px rgba(4, 8, 14, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.why-section .section-header {
  margin-bottom: 28px;
}

.why-section .section-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.why-section .section-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffd000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.why-section .section-copy .eyebrow::before,
.why-section .section-copy .eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 208, 0, 0.08), #ffd000);
}

.why-section .section-copy .eyebrow::after {
  background: linear-gradient(90deg, #ffd000, rgba(255, 208, 0, 0.08));
}

.why-section .section-copy h2 {
  margin: 0;
  max-width: 430px;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #f8fafc;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-section .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 204px;
  padding: 24px 16px 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(16, 24, 36, 0.96), rgba(10, 18, 30, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(1, 7, 18, 0.18);
}

.why-section .feature-card::after {
  inset: auto 18px 14px auto;
  width: 86px;
  height: 86px;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.16), transparent 72%);
}

.why-section .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  padding: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 208, 0, 0.26), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 208, 0, 0.34);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 26px rgba(0, 0, 0, 0.16);
}

.why-section .feature-icon-asset {
  background: transparent;
  box-shadow: none;
}

.why-section .benefit-icon-img,
.why-section .feature-icon-image {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: none;
}

.why-section .feature-body {
  display: grid;
  gap: 10px;
}

.why-section .feature-card h3 {
  position: relative;
  padding-bottom: 14px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
  color: #f8fafc;
}

.why-section .feature-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd000 0%, #f2b000 100%);
  transform: translateX(-50%);
}

.why-section .feature-card p {
  display: block;
  margin: 0;
  font-size: 13px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.76);
}

.locations-section .location-grid {
  display: none;
}

.hero .page-hero-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(31, 35, 41, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  display: none;
}

.hero .page-hero-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.hero .detail-list {
  gap: 16px;
  margin-top: 18px;
}

.hero .detail-list strong {
  margin-bottom: 2px;
  color: var(--white);
}

.hero .detail-list li::before {
  width: 9px;
  height: 9px;
  margin-top: 0.55rem;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 208, 0, 0.18);
}

.footer {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 208, 0, 0.08), transparent 24%),
    #0a0d12;
  padding: 44px 0 calc(150px + env(safe-area-inset-bottom));
}

.footer-grid {
  grid-template-columns: 1fr;
}

.footer-brand .logo-wrap {
  margin-bottom: 18px;
}

.footer-brand strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-list li {
  position: relative;
  padding-left: 22px;
}

.footer-list li::before,
.related-links li::before {
  position: absolute;
  left: 0;
}

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

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: var(--yellow);
}

.copyright {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.64);
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 2500;
  display: grid;
  grid-template-columns: 1fr 0.88fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(8, 11, 16, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}

.mobile-sticky a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  border-radius: 15px;
  font-size: 13.5px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.mobile-sticky .icon {
  width: 18px;
  height: 18px;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.faq-item.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px;
  border: 0;
  background: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-family: "Exo 2", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.dark .faq-answer-inner,
.faq-item.dark .faq-question {
  color: rgba(255, 255, 255, 0.92);
}

.faq-item.dark .faq-answer-inner {
  color: rgba(255, 255, 255, 0.74);
}

.faq-question .icon {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: end;
  color: var(--white);
  background: var(--black);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 20, 0.58) 0%, rgba(11, 15, 20, 0.72) 42%, rgba(11, 15, 20, 0.92) 100%),
    radial-gradient(circle at top right, rgba(255, 208, 0, 0.16), transparent 26%);
  z-index: 1;
}

.page-hero-grid {
  min-height: 540px;
  align-items: end;
  padding: 48px 0 42px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--yellow);
}

.page-hero-copy {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.page-hero-copy h1 {
  font-size: clamp(2.3rem, 6vw, 4.3rem);
}

.page-hero-copy p {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero-card {
  align-self: end;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.page-layout {
  grid-template-columns: 1fr;
}

.content-block {
  padding: 26px;
}

.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.content-block h3 {
  font-size: 1.42rem;
  margin-bottom: 14px;
}

.content-block p + p {
  margin-top: 14px;
}

.content-block .highlight {
  color: var(--red);
  font-weight: 800;
}

.content-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.service-links-grid {
  grid-template-columns: 1fr;
}

.location-card {
  padding: 22px;
}

.location-card h3 {
  margin-bottom: 10px;
}

.location-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.location-card .inline-action {
  width: fit-content;
}

.page-cta {
  margin-top: 12px;
}

.kombi-hero-card {
  display: grid;
  gap: 16px;
}

.kombi-step-grid,
.kombi-benefit-grid,
.kombi-gallery-grid {
  display: grid;
  gap: 14px;
}

.kombi-step-grid {
  grid-template-columns: 1fr;
}

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

.kombi-step,
.kombi-benefit,
.kombi-highlight-box {
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.kombi-step {
  display: grid;
  gap: 12px;
}

.kombi-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffe46a 0%, var(--yellow) 100%);
  color: #111827;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 208, 0, 0.24);
}

.kombi-step h3,
.kombi-benefit h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #111827;
}

.kombi-step p,
.kombi-benefit p {
  margin: 0;
  color: #4b5563;
  line-height: 1.5;
}

.kombi-audience {
  display: grid;
  gap: 18px;
}

.kombi-highlight-box {
  background:
    radial-gradient(circle at top right, rgba(255, 208, 0, 0.16), transparent 36%),
    linear-gradient(180deg, #fffdf7 0%, #fff8de 100%);
  border-color: rgba(255, 208, 0, 0.24);
}

.kombi-highlight-box strong {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 1.08rem;
}

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

.kombi-gallery-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

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

.kombi-gallery-card--wagon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(255, 208, 0, 0.14), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.kombi-gallery-card--wagon img {
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(17, 24, 39, 0.16));
}

.kombi-cta-card .button-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kombi-page .page-hero-copy h1 {
  max-width: 13ch;
}

.kombi-page .page-hero-copy p {
  max-width: 60ch;
}

.kombi-page .page-hero-copy .button-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kombi-page .page-hero-copy .btn-whatsapp,
.kombi-cta-card .btn-whatsapp {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .kombi-step-grid,
  .kombi-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .kombi-gallery-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .kombi-page .page-hero-copy .button-row,
  .kombi-cta-card .button-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kombi-page .page-hero-copy .btn-whatsapp,
  .kombi-cta-card .btn-whatsapp {
    grid-column: auto;
  }

  .kombi-gallery-card--wagon {
    min-height: 100%;
  }
}

.related-links a {
  font-weight: 700;
}

.dialog {
  border: 0;
  padding: 0;
  width: min(100vw - 18px, 980px);
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
}

.dialog::backdrop {
  background: rgba(11, 15, 20, 0.84);
  backdrop-filter: blur(8px);
}

.lightbox-panel {
  position: relative;
  background: var(--black);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-caption {
  padding: 18px 20px 22px;
  color: rgba(255, 255, 255, 0.76);
}

.status-bar {
  display: none;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--graphite);
  background: rgba(255, 208, 0, 0.22);
}

.cta-phone {
  display: block;
  margin-top: 12px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  font-weight: 800;
  color: var(--yellow);
}

@media (min-width: 640px) {
  .button-row {
    grid-template-columns: repeat(3, minmax(0, max-content));
    align-items: center;
  }

  .cta-card .button-row,
  .page-cta .button-row {
    grid-template-columns: repeat(3, minmax(0, max-content));
  }

  .contact-grid,
  .story-grid,
  .service-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .brand-meta {
    display: block;
  }

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

  .why-grid,
  .location-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-layout,
  .page-layout,
  .content-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .equipment-feature-card {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .equipment-feature-card .equipment-image img {
    height: 100%;
    min-height: 100%;
  }

  .content-grid {
    align-items: start;
  }

  .story-card {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .page-layout {
    align-items: start;
  }

  .page-layout .content-photo {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }

  .locations-section .location-grid {
    display: grid;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    border: 0;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-list a {
    padding: 12px 14px;
    background: transparent;
  }

  .header-actions {
    display: flex;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
  }

  .page-hero-grid {
    align-items: center;
  }

  .hero-content {
    min-height: auto;
    max-width: 640px;
    padding: 72px 0 52px;
  }

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

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

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

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

  .hero .page-hero-card {
    display: block;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 100%;
    padding: 22px 18px;
    text-align: center;
  }

  .service-card-body {
    justify-items: center;
  }
}

@media (min-width: 1200px) {
  .hero {
    min-height: 92svh;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }
}

@media (max-width: 767.98px) {
  .section,
  .section-tight {
    padding: 36px 0;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section-header {
    flex-direction: column;
    align-items: center;
  }

  .cta-card::after {
    width: 180px;
    height: 180px;
  }

  .hero .page-hero-card {
    margin-bottom: 4px;
  }

  .story-copy,
  .equipment-copy {
    padding: 22px 18px;
  }
}

@media (min-width: 540px) and (max-width: 767.98px) {
  .chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 359.98px) {
  .mobile-sticky {
    gap: 6px;
    padding-inline: 10px;
  }

  .mobile-sticky a {
    font-size: 12px;
  }

  .mobile-sticky .icon {
    width: 16px;
    height: 16px;
  }
}

/* Home mockup alignment */
body {
  padding-bottom: calc(104px + env(safe-area-inset-bottom));
}

.site-header {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.logo-wrap {
  width: clamp(176px, 53vw, 198px);
  height: 54px;
}

.logo-wrap img {
  width: 100%;
  max-height: 54px;
}

.btn-viber-ghost {
  color: var(--white);
  border: 1.5px solid rgba(124, 61, 218, 0.85);
  background: rgba(12, 15, 21, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.btn-viber-ghost:hover,
.btn-viber-ghost:focus-visible {
  background: rgba(24, 18, 38, 0.94);
  border-color: rgba(154, 101, 239, 0.95);
}

.hero-content {
  max-width: 430px;
  padding: 78px 0 124px;
}

.hero-content h1 {
  max-width: 9ch;
  font-size: clamp(39px, 10vw, 52px);
}

.hero-content > p {
  max-width: 19ch;
  font-size: 15px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-call,
.hero-viber,
.hero-whatsapp {
  min-height: 58px;
  border-radius: 18px;
  white-space: nowrap;
}

.hero-viber,
.hero-whatsapp {
  font-size: 15px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.hero-badge {
  justify-content: flex-start;
  min-height: 54px;
  padding: 0 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(8, 11, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge .icon {
  color: var(--yellow);
}

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

.service-card {
  min-height: 152px;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 16px;
  padding: 18px 16px;
  border-radius: 24px;
}

.service-card-body {
  width: 100%;
  min-height: 58px;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}

.service-card h3 {
  font-size: 15px;
  line-height: 1.28;
}

.service-card p {
  display: none;
}

.service-card-link {
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  font-size: 14px;
}

.service-card-link .icon {
  width: 16px;
  height: 16px;
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  min-height: 162px;
  padding: 16px 14px 18px;
  text-align: center;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin: 0;
}

.feature-body {
  display: grid;
  gap: 8px;
}

.feature-card h3 {
  font-size: 15px;
}

.feature-card p {
  font-size: 12.5px;
  line-height: 1.45;
}

.equipment-feature-card {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
}

.equipment-feature-card .equipment-image img {
  height: 100%;
  min-height: 300px;
}

.story-card {
  grid-template-columns: minmax(0, 1.18fr) minmax(124px, 0.82fr);
  align-items: center;
  gap: 12px;
  padding: 20px 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 14px 34px rgba(11, 15, 20, 0.08);
}

.story-copy {
  display: grid;
  gap: 12px;
  padding: 0 0 20px;
}

.story-copy h2 {
  font-size: clamp(1.65rem, 6vw, 2.1rem);
}

.story-copy p {
  margin: 0;
  color: #30353d;
  font-size: 0.98rem;
  line-height: 1.48;
}

.story-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
}

.story-visual {
  min-height: 0;
  padding: 0;
  background: none;
}

.story-visual img {
  width: 100%;
  max-width: 220px;
  height: 188px;
}

.locations-section {
  padding-top: 32px;
}

.locations-header,
.gallery-header {
  align-items: center;
  margin-bottom: 18px;
}

.locations-header .section-copy,
.gallery-header .section-copy,
.services-header .section-copy {
  max-width: 420px;
}

.locations-header h2,
.gallery-header h2 {
  font-size: clamp(1.9rem, 6.5vw, 2.5rem);
}

.chips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.chip {
  min-height: 46px;
  padding: 10px 8px;
  font-size: 14px;
}

.chip .icon {
  display: none;
}

.gallery-section {
  padding-top: 28px;
}

.gallery-header p {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-card {
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(11, 15, 20, 0.08);
}

.gallery-card img {
  aspect-ratio: 1 / 1;
}

.gallery-card span {
  padding: 10px;
  font-size: 11px;
}

.cta-card {
  display: grid;
  gap: 18px;
  padding: 24px 22px;
  border-radius: 24px;
}

.cta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 16ch;
}

.cta-card h2,
.cta-card h3 {
  font-size: clamp(2rem, 7vw, 2.85rem);
}

.cta-card::after {
  inset: auto -22px -28px auto;
  width: 170px;
  height: 170px;
  border-width: 18px;
}

.cta-card .button-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.cta-card .btn {
  min-height: 52px;
}

.footer {
  padding: 28px 0 calc(122px + env(safe-area-inset-bottom));
  background: #090d11;
}

.footer-card {
  display: grid;
  gap: 22px;
  padding: 24px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 208, 0, 0.06), transparent 18%),
    linear-gradient(180deg, #0d1219 0%, #090d12 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand .logo-wrap {
  margin-bottom: 0;
}

.footer-list {
  gap: 14px;
}

.footer-list li {
  padding-left: 24px;
  font-size: 15px;
}

.footer-orbit {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer-badge-247 {
  position: relative;
  width: 176px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(15, 20, 28, 0.98) 45%, rgba(6, 8, 13, 1) 72%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.footer-badge-247::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-top-color: #ef3c2d;
  border-right-color: #ef3c2d;
}

.footer-badge-247::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6a00;
  transform: translateX(-50%);
}

.footer-badge-247 span {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-orbit p {
  margin: 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-actions {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.footer-actions .btn {
  min-height: 56px;
  border-radius: 18px;
}

.copyright {
  margin-top: 20px;
}

.mobile-sticky {
  left: 18px;
  right: 18px;
  bottom: calc(6px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 7px;
  border-radius: 20px;
}

.mobile-sticky a {
  min-height: 50px;
  font-size: 14px;
}

@media (max-width: 389.98px) {
  .story-card,
  .equipment-feature-card {
    grid-template-columns: 1fr;
  }

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

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

  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-viber,
  .hero-call,
  .hero-whatsapp {
    font-size: 12px;
  }

  .story-visual {
    justify-content: center;
  }

  .story-visual img {
    max-width: 210px;
  }
}

@media (min-width: 768px) {
  .hero-actions {
    width: fit-content;
    grid-template-columns: repeat(3, max-content);
  }

  .hero-whatsapp {
    grid-column: auto;
  }

  .hero-badges {
    width: fit-content;
    grid-template-columns: repeat(3, max-content);
  }

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

  .footer-card {
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
  }

  .story-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  }
}

@media (min-width: 900px) {
  .logo-wrap {
    width: 220px;
    height: 58px;
  }

  .logo-wrap img {
    max-height: 58px;
  }

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

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

  .equipment-feature-card {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  }

  .cta-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .cta-card .button-row {
    grid-template-columns: repeat(2, max-content);
  }
}

/* Mobile homepage repair */
@media (max-width: 479.98px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .site-header {
    background: rgba(4, 6, 9, 0.98);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .logo-wrap {
    width: clamp(162px, 42vw, 182px);
    height: 46px;
  }

  .logo-wrap img {
    width: 100%;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
    filter: none;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .nav-toggle svg {
    width: 19px;
    height: 19px;
  }

  .hero {
    min-height: 486px;
    overflow: hidden;
    background: #070b10;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 8, 12, 0.64) 0%, rgba(5, 8, 12, 0.34) 42%, rgba(5, 8, 12, 0.1) 100%),
      linear-gradient(180deg, rgba(5, 8, 12, 0.03) 0%, rgba(5, 8, 12, 0.26) 56%, rgba(5, 8, 12, 0.78) 100%);
  }

  .hero-media {
    display: block;
    background: #070b10;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    min-height: 100%;
    object-fit: cover;
    object-position: 63% center;
    transform: none;
    filter: contrast(1.08) saturate(1.06) brightness(1.04);
  }

  .hero-grid {
    min-height: 486px;
    align-items: end;
  }

  .hero-content {
    min-height: auto;
    max-width: 314px;
    padding: 78px 0 14px;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content > p,
  .hero-highlight,
  .hero-call,
  .hero-viber,
  .hero-badge {
    font-family: "Montserrat", Arial, sans-serif;
  }

  .hero-content h1 {
    max-width: 298px;
    font-size: clamp(31px, 8vw, 34px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    text-wrap: balance;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
  }

  .hero-content > p {
    max-width: 310px;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 12px;
  }

  .hero-content .eyebrow {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: 0.07em;
    color: #f4b800;
  }

  .hero-content .eyebrow::before {
    width: 30px;
    height: 3px;
  }

  .hero-highlight {
    gap: 7px;
    padding: 0 14px;
    min-height: 42px;
    margin-top: 0;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(11, 15, 20, 0.44);
    border: 1px solid rgba(255, 208, 0, 0.64);
    font-size: 12px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255, 208, 0, 0.08);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
    align-items: stretch;
  }

  .hero-whatsapp {
    display: none;
  }

  .hero-call,
  .hero-viber,
  .hero-whatsapp {
    width: 100%;
    min-height: 50px;
    padding: 0 10px;
    border-radius: 16px;
    font-size: 12.5px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
    white-space: nowrap;
    justify-content: center;
  }

  .hero-call .icon,
  .hero-viber .icon,
  .hero-whatsapp .icon,
  .hero-highlight .icon,
  .hero-badge .icon {
    width: 18px;
    height: 18px;
  }

  .hero-call {
    box-shadow: 0 14px 28px rgba(255, 208, 0, 0.22);
  }

  .hero-viber {
    display: inline-flex;
    background: linear-gradient(180deg, #7c45dc 0%, #642cbf 100%);
    border: 1px solid rgba(193, 164, 244, 0.34);
    color: #fff;
    letter-spacing: -0.01em;
  }

  .hero-whatsapp {
    background: linear-gradient(180deg, #24b865 0%, var(--green) 100%);
    border: 1px solid rgba(121, 230, 166, 0.22);
    color: #fff;
    box-shadow: 0 12px 26px rgba(25, 184, 90, 0.18);
  }

  .hero-call span,
  .hero-viber span,
  .hero-whatsapp span {
    white-space: nowrap;
    font-size: 12.5px;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
    align-items: stretch;
  }

  .hero-badge {
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(18, 22, 28, 0.7);
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.14;
    text-align: left;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  }

  .hero-badge-mini-icon {
    width: 18px;
    height: 18px;
    flex: none;
    color: #f4b800;
  }

  .hero .page-hero-card {
    display: none !important;
  }

  .services-section {
    position: relative;
    z-index: 2;
    margin-top: -2px;
    padding: 20px 0 24px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    box-shadow: 0 -12px 30px rgba(15, 23, 32, 0.08);
  }

  .services-header .section-copy {
    max-width: 320px;
    padding-top: 0;
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .services-section .section-header {
    margin-bottom: 18px;
  }

  .services-section .section-copy .eyebrow {
    position: relative;
    margin-bottom: 0;
    padding: 0 48px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #f4b800;
    text-transform: uppercase;
  }

  .services-section .section-copy .eyebrow::before,
  .services-section .section-copy .eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: rgba(244, 184, 0, 0.85);
    transform: translateY(-50%);
  }

  .services-section .section-copy .eyebrow::before {
    left: 0;
  }

  .services-section .section-copy .eyebrow::after {
    right: 0;
  }

  .services-section .section-copy h2 {
    display: block;
    margin: 0;
    font-size: 25px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #11151a;
  }

  .services-section .section-copy p {
    display: block;
    margin: 0;
    max-width: 300px;
    font-size: 12.9px;
    line-height: 1.48;
    color: #737b85;
  }

  .why-section .section-copy h2,
  .locations-header h2,
  .gallery-header h2 {
    font-size: 26px;
  }

  .gallery-header p,
  .story-copy p,
  .equipment-copy p,
  .cta-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    grid-auto-rows: 1fr;
  }

  .service-card {
    min-height: 148px;
    height: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 10px;
    padding: 14px 10px 12px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 22px rgba(11, 15, 20, 0.07);
    background: #fff;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .service-icon-asset {
    background: transparent;
  }

  .service-card-body {
    display: grid;
    justify-items: center;
    align-self: stretch;
    width: 100%;
    grid-template-rows: minmax(3em, auto);
    gap: 10px;
    min-height: 0;
  }

  .service-card h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 900;
    color: #141920;
    text-wrap: balance;
  }

  .service-card h3::after {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd000 0%, #f0b100 100%);
  }

  .service-card p {
    display: none;
  }

  .service-card-cta {
    align-self: end;
    justify-self: center;
    font-size: 12px;
    color: #20262f;
  }

  .service-card:hover .service-card-cta,
  .service-card:focus-visible .service-card-cta,
  .service-card:focus-within .service-card-cta {
    color: #d8a500;
  }

  .why-section {
    padding: 14px 18px 6px;
  }

  .why-section {
    padding: 18px 14px 10px;
  }

  .why-section .container {
    padding: 28px 18px 28px;
    border-radius: 28px;
  }

  .why-section .section-header {
    margin-bottom: 24px;
  }

  .why-section .section-copy {
    max-width: 320px;
  }

  .why-section .section-copy h2 {
    max-width: 300px;
    font-size: 27px;
    line-height: 1.1;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .why-section .feature-card {
    min-height: 170px;
    padding: 18px 12px 16px;
    gap: 10px;
    border-radius: 20px;
  }

  .why-section .feature-icon {
    width: 74px;
    height: 74px;
    padding: 13px;
    border-radius: 999px;
    flex: none;
  }

  .why-section .feature-card h3 {
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 1.16;
    text-wrap: balance;
  }

  .why-section .feature-card p {
    display: block;
    font-size: 11.5px;
    line-height: 1.4;
  }

  .why-section .benefit-icon-img,
  .why-section .feature-icon-image {
    width: 46px;
    height: 46px;
  }

  .equipment-section,
  .story-section,
  .locations-section,
  .gallery-section,
  .page-cta {
    padding-top: 18px;
  }

  .equipment-feature-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .equipment-feature-card .equipment-image img {
    height: 268px;
    min-height: 268px;
  }

  .equipment-copy {
    gap: 15px;
    padding: 24px 20px 26px;
  }

  .equipment-eyebrow {
    gap: 8px;
  }

  .equipment-copy h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .equipment-copy p,
  .story-copy p,
  .equipment-copy p,
  .cta-copy p {
    font-size: 15px;
    line-height: 1.5;
  }

  .equipment-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .equipment-badge {
    min-height: 98px;
    padding: 12px 8px;
    font-size: 12px;
    line-height: 1.22;
  }

  .equipment-badge-icon {
    width: 38px;
    height: 38px;
  }

  .equipment-action {
    min-height: 56px;
    padding: 0 20px;
    font-size: 15px;
  }

  .story-copy h2 {
    font-size: 15px;
    line-height: 1.18;
  }

  .story-card {
    grid-template-columns: minmax(0, 1.05fr) 112px;
    gap: 10px;
    padding: 18px 16px 0;
    border-radius: 18px;
  }

  .story-copy {
    gap: 10px;
    padding-bottom: 16px;
  }

  .story-icon {
    width: 52px;
    height: 52px;
  }

  .story-visual img {
    max-width: 156px;
    height: 150px;
  }

  .story-card-kombi {
    gap: 16px;
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .story-card-kombi .story-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-card-kombi .story-copy {
    padding: 0;
    gap: 10px;
  }

  .story-card-kombi h2 {
    font-size: 1.78rem;
    line-height: 1.1;
  }

  .story-card-kombi .story-copy > p {
    font-size: 0.94rem;
  }

  .story-card-kombi .story-note {
    font-size: 0.82rem;
    padding: 12px 13px;
  }

  .story-card-kombi .story-visual {
    min-height: 150px;
    margin: 10px 0 14px;
  }

  .story-card-kombi .story-visual img {
    width: 90%;
    max-width: 300px;
    height: auto;
  }

  .story-actions {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-actions .btn {
    min-height: 52px;
    font-size: 13px;
    padding-inline: 14px;
  }

  .story-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .story-benefit-chip {
    min-height: 66px;
    font-size: 11px;
    padding: 9px 6px;
  }

  .locations-header,
  .gallery-header {
    margin-bottom: 14px;
  }

  .chips,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .chip {
    min-height: 40px;
    padding: 8px 6px;
    font-size: 12px;
  }

  .gallery-card {
    border-radius: 14px;
  }

  .gallery-card span {
    padding: 8px;
    font-size: 10px;
  }

  .cta-card {
    gap: 14px;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .cta-card h2,
  .cta-card h3 {
    font-size: 28px;
  }

  .cta-card .btn,
  .footer-actions .btn {
    min-height: 48px;
    border-radius: 14px;
    font-size: 13px;
  }

  .footer {
    padding: 18px 0 calc(132px + env(safe-area-inset-bottom));
  }

  .footer-card {
    gap: 18px;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand .logo-wrap {
    width: 132px;
    height: 42px;
  }

  .footer-brand .logo-wrap img {
    max-height: 42px;
  }

  .footer-list li {
    padding-left: 20px;
    font-size: 13px;
  }

  .footer-badge-247 {
    width: 132px;
  }

  .footer-badge-247 span {
    font-size: 2.3rem;
  }

  .footer-orbit p {
    font-size: 1rem;
  }

  .mobile-sticky {
    left: 12px;
    right: 12px;
    bottom: calc(6px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    padding: 7px;
    border-radius: 16px;
    background: rgba(8, 11, 16, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mobile-sticky a {
    min-height: 44px;
    border-radius: 13px;
    font-size: 12.5px;
  }

  .mobile-sticky.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .footer-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Premium coverage + gallery rebuild */
.premium-coverage.locations-section,
.premium-gallery.gallery-section {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 208, 0, 0.12), transparent 30%),
    radial-gradient(circle at 0% 30%, rgba(255, 208, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #0c1015 0%, #080b10 58%, #070a0f 100%);
  overflow: hidden;
}

.premium-coverage.locations-section::before,
.premium-gallery.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 208, 0, 0.1), transparent 18%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.04), transparent 20%);
  pointer-events: none;
}

.premium-coverage.locations-section {
  padding: 34px 0 18px;
}

.premium-gallery.gallery-section {
  padding: 8px 0 34px;
}

.premium-header {
  justify-content: center;
  margin-bottom: 18px;
  text-align: center;
}

.premium-header .section-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}

.premium-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.premium-header p {
  margin: 0;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.5;
}

.section-accent-line {
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd000 0%, #e8a900 100%);
  box-shadow: 0 0 20px rgba(255, 208, 0, 0.22);
}

.coverage-shell {
  display: grid;
  gap: 14px;
}

.coverage-visual-card,
.availability-card,
.location-card,
.premium-gallery .gallery-card,
.gallery-more-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.coverage-visual-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 208, 0, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.035) 100%);
}

.coverage-visual-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.coverage-heading-icon,
.availability-icon,
.availability-side-icon,
.gallery-more-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffd000;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.coverage-heading-icon .icon,
.availability-icon .icon,
.availability-side-icon .icon,
.gallery-more-icon .icon,
.location-card-icon .icon {
  width: 22px;
  height: 22px;
}

.coverage-map-art {
  position: relative;
  min-height: 238px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 50%, rgba(255, 208, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.coverage-map-art::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 208, 0, 0.12);
  box-shadow:
    0 0 0 24px rgba(255, 208, 0, 0.03),
    0 0 0 52px rgba(255, 208, 0, 0.02);
}

.coverage-map-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coverage-map-outline {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2.2;
}

.coverage-map-inner {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 208, 0, 0.16);
  stroke-width: 1.4;
}

.coverage-map-route {
  fill: none;
  stroke: rgba(255, 208, 0, 0.14);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
}

.coverage-pins g > circle:first-child {
  fill: rgba(255, 208, 0, 0.08);
}

.coverage-pins g > path {
  fill: #ffd000;
  filter: drop-shadow(0 0 10px rgba(255, 208, 0, 0.36));
}

.coverage-pins g > circle:last-child {
  fill: #14171c;
}

.premium-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.location-card {
  min-height: 102px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 14px 10px;
  text-align: center;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.038) 100%);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
}

.location-card:hover,
.location-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 208, 0, 0.28);
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.location-card:active {
  transform: scale(0.985);
}

.location-card-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd000;
}

.location-card-icon-asset {
  width: 36px;
  height: 36px;
}

.location-card-icon-asset img,
.gallery-divider-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.location-card span:last-child {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}

.location-card-wide {
  grid-column: span 3;
}

.availability-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 18px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at 14% 50%, rgba(255, 208, 0, 0.1), transparent 28%);
}

.availability-copy {
  display: grid;
  gap: 4px;
}

.availability-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
}

.availability-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.4;
}

.gallery-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 6px;
}

.gallery-divider-line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 208, 0, 0.82) 50%, transparent 100%);
}

.gallery-divider-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.premium-gallery .gallery-header {
  margin-bottom: 16px;
}

.premium-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.premium-gallery .gallery-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.premium-gallery .gallery-card button {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.premium-gallery .gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.premium-gallery .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.premium-gallery .gallery-card span {
  display: none;
}

.premium-gallery .gallery-card:hover img,
.premium-gallery .gallery-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.gallery-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.gallery-more-btn {
  width: min(100%, 520px);
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 208, 0, 0.48);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.gallery-more-btn:hover,
.gallery-more-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 208, 0, 0.7);
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.gallery-more-btn:active {
  transform: scale(0.988);
}

.gallery-more-btn span {
  font-size: 1.02rem;
  font-weight: 900;
}

.gallery-more-arrow {
  width: 18px;
  height: 18px;
  color: #ffd000;
}

@media (max-width: 479.98px) {
  .premium-coverage.locations-section {
    padding: 26px 0 16px;
  }

  .premium-gallery.gallery-section {
    padding: 2px 0 28px;
  }

  .premium-header {
    margin-bottom: 14px;
  }

  .premium-header .section-copy {
    gap: 8px;
  }

  .premium-header h2 {
    font-size: 26px;
  }

  .premium-header p {
    max-width: 25ch;
    font-size: 13px;
  }

  .section-accent-line {
    width: 38px;
  }

  .coverage-shell {
    gap: 12px;
  }

  .coverage-visual-card {
    padding: 14px;
    border-radius: 24px;
  }

  .coverage-visual-heading {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .coverage-heading-icon,
  .availability-icon,
  .availability-side-icon,
  .gallery-more-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .coverage-map-art {
    min-height: 196px;
    border-radius: 18px;
  }

  .premium-location-grid {
    gap: 10px;
  }

  .location-card {
    min-height: 88px;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 16px;
  }

  .location-card span:last-child {
    font-size: 12px;
  }

  .availability-card {
    gap: 12px;
    margin-top: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .availability-copy h3 {
    font-size: 0.98rem;
  }

  .availability-copy p {
    font-size: 0.86rem;
  }

  .gallery-divider {
    gap: 12px;
    margin: 18px 0 4px;
  }

  .gallery-divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    padding: 7px;
  }

  .premium-gallery .gallery-header {
    margin-bottom: 14px;
  }

  .premium-gallery-grid {
    gap: 10px;
  }

  .gallery-more-btn {
    min-height: 58px;
    padding: 0 16px;
    gap: 10px;
  }

  .gallery-more-btn span {
    font-size: 0.95rem;
  }
}

@media (max-width: 389.98px) {
  .premium-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-card-wide {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .premium-coverage.locations-section {
    padding: 42px 0 18px;
  }

  .premium-gallery.gallery-section {
    padding-bottom: 40px;
  }

  .coverage-shell {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 18px;
    align-items: stretch;
  }

  .coverage-visual-card {
    min-height: 100%;
  }

  .coverage-map-art {
    min-height: 360px;
  }

  .premium-location-grid {
    align-content: start;
  }

  .premium-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-more-btn {
    width: min(100%, 560px);
  }
}

/* Light premium override for coverage + gallery */
.premium-coverage.locations-section,
.premium-gallery.gallery-section {
  color: #11151a;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 208, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
}

.premium-coverage.locations-section::before,
.premium-gallery.gallery-section::before {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 208, 0, 0.1), transparent 18%),
    radial-gradient(circle at 0% 72%, rgba(255, 208, 0, 0.06), transparent 18%);
}

.premium-header h2 {
  color: #11151a;
}

.premium-header p {
  color: #5d6570;
}

.premium-gallery.gallery-section {
  padding-top: 0;
}

.coverage-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 32, 0.06);
  box-shadow: 0 20px 44px rgba(15, 23, 32, 0.08);
}

.coverage-panel-head {
  display: flex;
  justify-content: flex-start;
}

.coverage-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #37404a;
  font-size: 14px;
  font-weight: 800;
}

.coverage-visual-card {
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 32, 0.08);
}

.coverage-visual-heading {
  display: none;
}

.coverage-heading-icon,
.availability-icon,
.availability-side-icon,
.gallery-more-icon {
  color: #e6ac00;
  background: rgba(255, 208, 0, 0.1);
  border-color: rgba(255, 208, 0, 0.22);
}

.coverage-map-art {
  min-height: auto;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.coverage-map-art::before,
.coverage-map-art svg {
  display: none;
}

.coverage-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.premium-location-grid {
  gap: 10px;
}

.location-card {
  min-height: 72px;
  color: #11151a;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 10px 20px rgba(15, 23, 32, 0.05);
}

.location-card:hover,
.location-card:focus-visible {
  background: #fffdf7;
  box-shadow: 0 14px 28px rgba(15, 23, 32, 0.08);
}

.location-card-icon {
  width: 24px;
  height: 24px;
  color: #e3a800;
}

.location-card span:last-child {
  color: #1b222b;
  font-size: 12.5px;
}

.location-card-icon-asset {
  width: 30px;
  height: 30px;
}

.availability-card {
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.14) 0%, rgba(255, 244, 201, 0.86) 100%);
  border: 1px solid rgba(255, 208, 0, 0.28);
  box-shadow: 0 18px 34px rgba(255, 208, 0, 0.12);
}

.availability-copy h3 {
  color: #151a21;
}

.availability-copy p {
  color: #535c66;
}

.gallery-divider-line {
  background: linear-gradient(90deg, transparent 0%, rgba(226, 170, 0, 0.8) 50%, transparent 100%);
}

.gallery-divider-icon {
  background: rgba(255, 208, 0, 0.12);
  border-color: rgba(255, 208, 0, 0.22);
}

.premium-gallery .gallery-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 16px 32px rgba(15, 23, 32, 0.08);
}

.premium-gallery .gallery-card::after {
  box-shadow: inset 0 0 0 1px rgba(15, 23, 32, 0.02);
}

.gallery-cta-wrap {
  margin-top: 20px;
}

.gallery-more-btn {
  color: #171c23;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 208, 0, 0.72);
  box-shadow: 0 16px 34px rgba(15, 23, 32, 0.08);
}

.gallery-more-btn:hover,
.gallery-more-btn:focus-visible {
  background: #fffdf7;
}

@media (max-width: 479.98px) {
  .premium-coverage.locations-section {
    padding: 24px 0 14px;
  }

  .coverage-panel {
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .coverage-label {
    font-size: 12px;
  }

  .coverage-visual-card {
    padding: 8px;
    border-radius: 18px;
  }

  .premium-location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .location-card {
    min-height: 70px;
    padding: 9px 7px;
    border-radius: 16px;
  }

  .location-card span:last-child {
    font-size: 11px;
  }

  .location-card-wide {
    grid-column: span 3;
  }

  .availability-card {
    grid-template-columns: auto 1fr auto;
    padding: 12px;
    border-radius: 18px;
  }

  .premium-gallery.gallery-section {
    padding-bottom: 24px;
  }

  .premium-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .coverage-panel {
    gap: 18px;
    padding: 22px;
  }

  .premium-gallery.gallery-section {
    padding-bottom: 38px;
  }

  .coverage-visual-card {
    padding: 14px;
  }

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

  .location-card-wide {
    grid-column: span 2;
  }
}

/* ── Story / Комби секция ── */
.story-section {
  background: #fffdf0;
}

/* Обърнати колони: по-тясна вляво (текст), по-широка вдясно (карти) */
.story-card-kombi {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(255, 208, 0, 0.14), transparent 30%),
    radial-gradient(circle at left center, rgba(255, 208, 0, 0.08), transparent 36%),
    linear-gradient(180deg, #fffdf0 0%, #fffcea 100%);
}

/* Info cards — white rounded cards */
.story-info-cards {
  display: grid;
  gap: 8px;
  margin-top: 0;
}

.story-info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.story-info-icon {
  width: 36px;
  height: 36px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 208, 0, 0.18);
  color: #b88900;
}

.story-info-icon .icon {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.story-info-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.story-info-text strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
}

.story-info-text span {
  display: block;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.35;
}

/* Yellow divider under h2 */
.story-divider {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: #ffd000;
}

/* Bottom row spans both card columns */
.story-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
  gap: 12px;
  align-items: stretch;
}

/* Note card: horizontal layout — big circle icon left, text right */
.story-card-kombi .story-note {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #0b0f14;
  border-radius: 18px;
  margin: 0;
  border: none;
  box-shadow: none;
  color: inherit;
}

.story-card-kombi .story-note .story-note-icon {
  width: 52px;
  height: 52px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.14);
  color: #ffd000;
}

.story-card-kombi .story-note .story-note-icon .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.story-note-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.story-card-kombi .story-note strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.story-card-kombi .story-note p {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.story-card-kombi .story-actions {
  display: flex;
  align-items: stretch;
}

.story-card-kombi .story-actions .btn {
  width: 100%;
  min-height: 90px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 900;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 12px 24px rgba(255, 208, 0, 0.30);
  padding: 14px 10px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.story-card-kombi .story-actions .btn .icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 479.98px) {
  /* Equal columns + tighter padding so left col gets ~155px for text */
  .story-card-kombi {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 14px 16px;
  }

  /* Smaller h2 so "Допълнителна" fits on one line at ~155px */
  .story-card-kombi h2 {
    font-size: 19px;
    max-width: none;
    overflow-wrap: break-word;
  }

  /* Smaller description */
  .story-card-kombi .story-copy > p {
    font-size: 12.5px;
    line-height: 1.38;
  }

  /* Shorter kicker line + smaller text */
  .story-card-kombi .story-kicker {
    font-size: 8.5px;
    gap: 6px;
  }

  .story-card-kombi .story-kicker::before {
    width: 20px;
  }

  /* Compact info cards to fit right col */
  .story-info-card {
    gap: 9px;
    padding: 10px 11px;
  }

  .story-card-kombi .story-note {
    padding: 12px;
    border-radius: 16px;
    gap: 10px;
  }

  .story-card-kombi .story-note .story-note-icon {
    width: 44px;
    height: 44px;
  }

  .story-card-kombi .story-note .story-note-icon .icon {
    width: 19px;
    height: 19px;
  }

  .story-card-kombi .story-note strong {
    font-size: 12px;
  }

  .story-card-kombi .story-note p {
    font-size: 10.5px;
  }

  .story-card-kombi .story-actions .btn {
    min-height: 80px;
    border-radius: 16px;
    font-size: 14px;
  }
}

@media (max-width: 389.98px) {
  .story-card-kombi {
    grid-template-columns: 1fr;
  }

  .story-bottom {
    grid-column: 1;
  }
}
