 :root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --bg-elevated: #090909;
  --bg-elevated-soft: #0b0b0b;
  --card: #101010;
  --surface-soft: rgba(255, 255, 255, 0.02);
  --surface-soft-hover: rgba(255, 255, 255, 0.035);

  --text: #fff;
  --text-strong: #f2f2f2;
  --text-muted: #d9d9d9;
  --text-muted-soft: #c7c7c7;
  --text-muted-alt: #bdbdbd;
  --text-overlay: #ddd;
  --muted: #b8b8b8;

  --line: rgba(255, 255, 255, 0.08);
  --line-nav: rgba(255, 255, 255, 0.15);
  --line-gold-soft: rgba(201, 161, 74, 0.35);
  --line-gold: rgba(201, 161, 74, 0.45);
  --line-gold-strong: rgba(201, 161, 74, 0.6);

  --gold: #c9a14a;
  --gold-hover: #e2bb68;

  --overlay-dark: rgba(0, 0, 0, 0.35);
  --overlay-gold-soft: rgba(201, 161, 74, 0.12);
  --header-bg: rgba(5, 5, 5, 0.58);
  --header-bg-scrolled: rgba(5, 5, 5, 0.92);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-header: 0 10px 30px rgba(0, 0, 0, 0.22);

  --radius-sm: 10px;
  --radius-pill: 999px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s;
  --transition-slow: 0.35s;
  --transition-image: 0.6s;
  --transition-image-slow: 0.7s;
}

/* =========================================================
   BASE
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* =========================================================
   IMAGE ARCHITECTURE
   ---------------------------------------------------------
   Avoid a global img[width][height] rule here.
   This project mixes three different image behaviors:
   1) intrinsic / content images -> keep natural ratio
   2) fill-media images -> stretch to a fixed frame
   3) cover-media images -> fill cards / hero via object-fit

   A global height:auto on all dimensioned images caused regressions in:
   - hero sections
   - popular cards on mobile
   - offer and gallery grids

   So image sizing is intentionally scoped per component below.
   ========================================================= */

a {
  color: inherit;
}

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

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 4000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: max-content;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  opacity: 0;
  transition: top var(--transition-fast), opacity var(--transition-fast);
}

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

body.menu-open {
  overflow: hidden;
}

/* Keep a single, predictable focus treatment for interactive elements.
   Lightbox controls retain a slightly larger offset for the dark overlay UI. */
:where(a, button, .btn, .social-icon, .footer-social a, .service-gallery-item, .menu-toggle, .site-nav a, .header-phone, .back-link, .lightbox-close, .lightbox-nav):focus-visible {
  outline: 3px solid var(--gold);
}

:where(a, button, .btn, .social-icon, .footer-social a, .service-gallery-item, .menu-toggle, .site-nav a, .header-phone, .back-link):focus-visible {
  outline-offset: 3px;
}

:is(.lightbox-close, .lightbox-nav):focus-visible {
  outline-offset: 4px;
}

.site-nav a:focus-visible,
.footer-links a:focus-visible,
.footer-contact a:focus-visible,
.brand:focus-visible {
  border-radius: 2px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: background-color var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  transition: min-height var(--transition-slow);
}

.site-header.is-scrolled .header-inner {
  min-height: 74px;
}

.brand-logo {
  width: auto;
  height: 58px;
  display: block;
  transition: height var(--transition-slow);
}

.site-header.is-scrolled .brand-logo {
  height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a,
.header-phone {
  transition: color var(--transition-base);
}

.site-nav a {
  color: var(--text-strong);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-icon,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phone-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-gold-soft);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 2px solid var(--line-nav);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: var(--radius-pill);
  background: var(--text);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 30px;
  text-decoration: none;
  font-weight: 700;
  transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-secondary {
  border: 1px solid var(--line-gold-strong);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--overlay-gold-soft);
}

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

/* =========================================================
   HERO
   ========================================================= */
.hero,
.service-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
}

.hero-media,
.service-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.46);
}

.service-hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58));
}

.hero-content {
  max-width: 1000px;
  padding: 140px 20px 110px;
  text-align: center;
}

.service-hero-content {
  max-width: 820px;
  padding: 150px 20px 110px;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 34px;
  color: #ececec;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  color: var(--text);
  text-decoration: none;
  font-size: 34px;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* =========================================================
   COMMON SECTIONS
   ========================================================= */
.intro-section,
.popular-section,
.stats-section,
.why-us,
.home-gallery,
.contact-cta,
.service-intro {
  padding: 110px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-box {
  max-width: 900px;
  text-align: center;
}

.intro-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.008));
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.intro-copy {
  max-width: 720px;
  text-align: left;
}

.intro-copy p {
  margin-left: 0;
}

.intro-copy .intro-events {
  margin: 28px 0 0;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.intro-highlights {
  display: grid;
  gap: 18px;
}

.intro-highlight-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.intro-highlight-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--gold);
}

.intro-highlight-card h3 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: clamp(22px, 2.1vw, 26px);
  line-height: 1.25;
}

.intro-highlight-card p {
  margin: 0;
  color: var(--text-muted-alt);
  font-size: 16px;
  line-height: 1.7;
}

.premium-intro {
  background:
    radial-gradient(circle at top left, rgba(198, 160, 87, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008));
}

.premium-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.premium-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line-gold);
  background: rgba(198, 160, 87, 0.06);
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 600;
}

.premium-feature-list {
  align-self: stretch;
}

.intro-highlights-heading {
  margin: 0 0 6px;
  color: var(--text-strong);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}

.intro-highlight-card--premium {
  position: relative;
}


.why-us--premium {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.005)),
    var(--bg-soft);
}

.stats-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 88px 0 92px;
}

.stats-panel {
  border-radius: 0;
}

.popular-section {
  border-top: 1px solid var(--line);
  padding-bottom: 48px;
}

.why-us {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-gallery {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.intro-box h2,
.section-heading h2,
.contact-cta h2,
.subpage-hero h1,
.contact-top h1,
.service-hero h1,
.intro-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
}

.intro-box p,
.section-heading p,
.contact-cta p,
.subpage-hero p,
.contact-top .lead,
.service-hero p,
.intro-copy p {
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 17px;
}

.intro-box .intro-events {
  margin: 30px auto;
  color: var(--text);
  font-weight: 700;
}

.intro-events .bullet {
  padding: 0 10px;
  color: var(--gold);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}


.stats-panel {
  padding: 38px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.stats-heading {
  margin-bottom: 38px;
}

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

.stat-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  text-align: center;
  transition: transform var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold-strong);
  background: var(--surface-soft-hover);
}

.stat-value {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 16px;
  line-height: 1.45;
}

/* =========================================================
   HOMEPAGE
   ========================================================= */
/* Cards and galleries below keep existing behavior, with only
   selector deduplication and clearer grouping. */
.popular-section,
.stats-section,
.why-us,
.gallery-section {
  background: var(--bg-soft);
}

.popular-grid,
.stats-grid,
.why-grid,
.gallery-grid-home,
.video-grid {
  display: grid;
  gap: 24px;
}

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

.popular-grid {
  gap: 28px;
}

.stats-grid,
.why-grid,
.gallery-grid-home {
  gap: 26px;
}

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

.popular-card,
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.popular-card {
  min-height: 380px;
}

.gallery-item {
  min-height: 360px;
}

.popular-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-image);
}

.popular-card img {
  transition-duration: var(--transition-image-slow);
}

.gallery-item img {
  min-height: 360px;
}

.popular-card::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
}

.popular-card::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.08));
}

.gallery-item::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.08));
}

.popular-card:hover img {
  transform: scale(1.07);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.popular-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
}

.popular-overlay h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.popular-overlay p {
  max-width: 520px;
  margin: 0;
  color: var(--text-overlay);
  font-size: 15px;
}

.why-card {
  min-height: 280px;
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  transition: transform var(--transition-slow), border-color var(--transition-slow), background var(--transition-slow);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  background: var(--surface-soft-hover);
}

.why-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.why-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.3;
}

.why-card p {
  margin: 0;
  color: var(--text-muted-alt);
  font-size: 16px;
}

.gallery-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--line-gold);
  background: var(--overlay-dark);
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-cta,
.cta-buttons {
  margin-top: 42px;
  text-align: center;
}

.contact-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated-soft);
}

.contact-cta-inner {
  text-align: center;
}

/* =========================================================
   SUBPAGES
   ========================================================= */
/* Offer cards and service gallery kept stable intentionally.
   This pass avoids changing hero, header, and responsive logic. */
.subpage-main,
.contact-main {
  padding-top: 92px;
}

.subpage-hero,
.contact-top {
  padding: 90px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb .current {
  color: var(--gold);
}

.footer-links a,
.footer-contact a,
.breadcrumb a,
.back-link {
  transition: color var(--transition-base);
}


.offer-categories {
  padding: 70px 0 35px;
}

.offer-category {
  margin-bottom: 54px;
}

.offer-category h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.offer-category-lead {
  margin: 0 0 28px;
  color: var(--muted);
}

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

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

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

.offer-card-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  text-decoration: none;
  transition: transform var(--transition-slow), border-color var(--transition-slow), background var(--transition-slow);
}

.offer-card-image:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  background: var(--surface-soft-hover);
}

/* Shared media-card behavior */
/* Heights intentionally remain explicit here to preserve equal card rows. */
.offer-image-wrap {
  overflow: hidden;
}

.offer-image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-image-slow);
}

.offer-card-image:hover .offer-image-wrap img {
  transform: scale(1.05);
}

.offer-card-body {
  padding: 24px;
}

.offer-card-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.offer-card-body p {
  margin: 0 0 14px;
  color: var(--text-muted-soft);
  font-size: 15px;
}

.offer-link {
  color: var(--gold);
  font-weight: 700;
}

.service-intro {
  padding-bottom: 30px;
}

.intro-grid {
  display: block;
}

/* Full-width copy on service/contact subpages.
   Kept explicit to avoid altering homepage text widths. */
.intro-copy,
.intro-copy p,
.subpage-hero p,
.contact-top .lead {
  width: 100%;
  max-width: none;
}

.intro-copy p,
.subpage-hero p,
.contact-top .lead {
  margin-left: 0;
  margin-right: 0;
}

.service-intro .container {
  max-width: none;
}

.intro-copy .stacked-p {
  margin-top: 14px;
}

.gallery-section {
  padding: 30px 0 35px;
}

.video-section {
  padding: 35px 0 30px;
}

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

.gallery-page {
  padding: 10px 0;
}

.service-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.service-gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.35s ease;
}

.service-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
}

.service-gallery-item:hover img {
  transform: scale(1.05);
  filter: contrast(1.05);
}

.service-gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.22);
}

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

.video-card {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  transition: border-color 0.35s, transform 0.35s;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 161, 74, 0.35);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #111;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.back-row {
  margin-top: 22px;
  text-align: left;

  margin-bottom: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s, transform 0.3s;
}

.back-link:hover {
  color: var(--gold);
  transform: translateX(-4px);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  padding: 70px 0 30px;
}

.contact-trust-layout {
  align-items: start;
  gap: 28px;
}

.contact-primary,
.trust-panel {
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.contact-primary {
  padding: 34px;
}

.trust-panel {
  padding: 28px;
}

.contact-primary h2,
.trust-panel h3 {
  margin: 0 0 16px;
}

.contact-primary h2 {
  font-size: 32px;
}

.trust-panel h3 {
  font-size: 24px;
}

.contact-methods-grid,
.contact-trust-sidebar,
.social-list {
  display: grid;
}

.contact-methods-grid,
.contact-trust-sidebar {
  gap: 18px;
}

.contact-methods-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin-bottom: 24px;
}

.social-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.contact-method-card,
.social-link-card {
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}

.contact-method-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.contact-method-card-static {
  cursor: default;
}

.contact-method-card-static:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.contact-method-card.social-card {
  grid-column: 1 / -1;
}

.contact-method-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-method-value {
  font-size: 26px;
  line-height: 1.2;
}

.contact-method-email {
  font-size: 22px;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-method-desc,
.trust-panel p,
.trust-list,
.contact-checklist,
.trust-note {
  line-height: 1.8;
}

.contact-method-desc,
.trust-panel p {
  color: #c4c4c4;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.social-link-card:hover {
  border-color: rgba(201, 161, 74, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.social-link-icon {
  flex: 0 0 auto;
}

.social-link-text {
  font-weight: 700;
}

.social-icon,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.social-icon svg {
  width: 20px;
  fill: #d2d2d2;
  transition: fill 0.3s;
}

.social-link-card:hover .social-icon {
  border-color: var(--gold);
  background: rgba(201, 161, 74, 0.06);
}

.social-link-card:hover .social-icon svg {
  fill: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}

.trust-list,
.contact-checklist {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.trust-list li + li,
.contact-checklist li + li {
  margin-top: 10px;
}

.trust-panel-soft {
  background: rgba(255, 255, 255, 0.03);
}

.trust-note {
  margin: 18px 0 0;
  color: var(--text-muted-alt);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-logo {
  width: auto;
  height: auto;
  max-width: 220px;
  display: block;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin: 0 0 20px;
  font-size: 20px;
}

.footer-col p,
.footer-links a,
.footer-contact a,
.footer-social a {
  color: #bbb;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.7;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-social {
  margin-top: 15px;
}

.footer-social-inline {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social svg {
  width: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.92);
  touch-action: pan-y pinch-zoom;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  --lightbox-swipe-offset: 0px;
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 1400px);
  max-height: 84vh;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--surface-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translate3d(var(--lightbox-swipe-offset), 10px, 0) scale(0.985);
  will-change: opacity, transform;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.lightbox-image.is-loading {
  opacity: 0;
}

.lightbox-image.is-visible {
  opacity: 1;
  transform: translate3d(var(--lightbox-swipe-offset), 0, 0) scale(1);
}

.lightbox-image.is-dragging {
  transition: none;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 4;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 40px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 4;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.7);
  color: var(--text);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-prev {
  transform: translateX(calc(-100% - 8px));
}

.lightbox-next {
  transform: translateX(8px);
}

.lightbox.controls-hidden .lightbox-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* =========================================================
   RENDERING OPTIMIZATIONS
   ========================================================= */
/* Applied only to lower sections to avoid LCP / above-the-fold regressions. */
.popular-section,
.stats-section,
.intro-section,
.why-us,
.contact-cta,
.offer-categories,
.gallery-section,
.video-section,
.contact-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* Tablet / small desktop */
@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .header-phone {
    justify-self: end;
  }

  /* Keep the compact phone CTA before the mobile menu breakpoint. */
  .header-phone span:last-child {
    display: none;
  }
}

/* Tablet / large mobile */
@media (max-width: 900px) {
  /* Header / navigation */
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 16px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 2px solid var(--line-nav);
    border-radius: 16px;
    background: rgba(5, 5, 5, 0.98);
  }

  .site-nav.open {
    display: flex;
  }

  /* One-column stacks */
  .popular-grid,
  .stats-grid,
  .why-grid,
  .gallery-grid-home,
  .offer-grid-2,
  .offer-grid-3,
  .service-gallery,
  .gallery-page-grid,
  .video-grid,
  .contact-trust-layout,
  .social-list,
  .footer-container,
  .intro-layout {
    grid-template-columns: 1fr;
  }

  .stats-section {
    margin-top: -44px;
    padding-bottom: 84px;
  }

  /* Keep gallery cards visually even on smaller screens. */
  .service-gallery-item img,
  .offer-image-wrap img,
  .gallery-item img {
    min-height: 280px;
    height: 280px;
  }

  /* Footer / contact alignment */
  .footer-container,
  .back-row {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .stats-panel {
    padding: 28px 22px;
  }

  .stats-heading {
    margin-bottom: 28px;
  }

  .footer-social-inline,
  .contact-actions {
    justify-content: center;
  }

  /* Lightbox controls */
  .lightbox-nav {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .intro-highlight-card {
    padding: 22px 20px;
  }

  .intro-actions {
    flex-direction: column;
  }

  .stats-section {
    margin-top: -30px;
    padding-bottom: 72px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-value {
    font-size: clamp(30px, 9vw, 40px);
  }


  .container {
    width: min(100% - 28px, 1200px);
  }

  .subpage-main,
  .contact-main {
    padding-top: 84px;
  }

  /* Header sizing */
  .header-inner {
    min-height: 84px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    height: 50px;
  }

  .site-header.is-scrolled .brand-logo {
    height: 44px;
  }

  /* Stacked CTAs */
  .hero-buttons,
  .contact-actions {
    flex-direction: column;
  }

  .contact-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .service-hero-content {
    padding-top: 140px;
  }

  .contact-method-email {
    font-size: 18px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .intro-box .intro-events {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    line-height: 1.5;
  }

  .intro-events .bullet {
    display: none;
  }

  /* Lightbox spacing */
  .lightbox {
    padding: 22px;
  }

  .lightbox-close {
    top: 10px;
    right: 14px;
    z-index: 4;
  }

  .lightbox-nav {
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .lightbox-prev {
    transform: translateX(calc(-100% - 7px));
  }

  .lightbox-next {
    transform: translateX(7px);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* Keep hard overrides only where transitions are intentionally disabled. */
  .site-header,
  .header-inner,
  .brand-logo,
  .site-nav a,
  .header-phone,
  .btn,
  .popular-card,
  .offer-card-image,
  .offer-image-wrap img,
  .service-gallery-item img,
  .service-gallery-item::after,
  .video-card,
  .back-link,
  .social-icon,
  .lightbox-image {
    transition: none !important;
  }

  .lightbox-image,
  .lightbox-image.is-visible {
    transform: none !important;
  }
}


@media (max-width: 900px) {
  .premium-points {
    gap: 10px;
  }

  .premium-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


.intro-layout--stacked {
  grid-template-columns: 1fr;
  gap: 40px;
}

.intro-copy--wide {
  max-width: none;
}

.premium-feature-list--row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-self: stretch;
}

.premium-feature-list--row .intro-highlight-card--premium {
  height: 100%;
}

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

@media (max-width: 767px) {
  .intro-layout--stacked {
    gap: 30px;
  }

  .premium-feature-list--row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   SERVICE FAQ
   ========================================================= */


.faq-service {
  margin-top: 44px;
  padding-top: 8px;
}

.faq-service .section-heading {
  margin-bottom: 18px;
}

.faq-service .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.faq-service .section-label::before {
  content: none;
  display: none;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  box-shadow: none;
  overflow: hidden;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item:hover {
  transform: none;
  border-color: var(--line-gold);
  box-shadow: none;
}

.faq-item[open] {
  border-color: var(--line-gold-strong);
  background: rgba(255,255,255,0.03);
  box-shadow: none;
}

.faq-question {
  list-style: none;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-strong);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.faq-item[open] .faq-question::after {
  content: "-";
  transform: none;
  border-color: var(--line-gold-strong);
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-answer p {
  margin: 0;
  max-width: none;
}

@media (max-width: 640px) {
  .faq-service {
    margin-top: 38px;
  }

  .faq-accordion {
    gap: 8px;
  }

  .faq-question {
    padding: 13px 14px;
    gap: 10px;
    font-size: 0.93rem;
  }

  .faq-answer {
    padding: 0 14px 13px;
    font-size: 0.9rem;
  }
}


/* FAQ as standalone section on offer pages */
.faq-section-offer {
  padding: 0;
}

.faq-section-offer .container {
  display: block;
}

.faq-section-offer .faq-service {
  margin-top: 24px;
  padding-top: 0;
}


/* FIX: pełna szerokość nagłówka w sekcji galerii na podstronach oferty */
.gallery-section .section-heading {
  width: 100%;
  max-width: 100%;
}

.gallery-section .section-heading h2 {
  width: 100%;
  max-width: 100%;
}

/* FIX: full width section heading */
.section-heading {
  max-width: 100%;
  width: 100%;
}



/* FIX: contact email + phone layout */
.contact-primary .contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-primary .contact-items {
    grid-template-columns: 1fr;
  }
}

/* FIX: FAQ spacing */
.faq-section-offer {
  margin-bottom: 20px;
}



/* FIX: contact methods equal cards layout */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.contact-methods-grid > * {
  min-width: 0;
  height: 100%;
}

.contact-methods-grid .contact-method,
.contact-methods-grid .contact-card,
.contact-methods-grid article,
.contact-methods-grid a {
  height: 100%;
}

@media (max-width: 767px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* keep spacing under FAQ on contact */
.faq-section-offer {
  margin-bottom: 20px;
}

/* === LIGHTBOX NAV: mobile bottom center / desktop side buttons === */
/* Mobile keeps bottom-centered controls and JS auto-hide. */
@media (max-width: 640px) {
  .lightbox-nav {
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .lightbox-prev {
    left: 50%;
    transform: translateX(calc(-100% - 7px));
  }

  .lightbox-next {
    left: 50%;
    right: auto;
    transform: translateX(7px);
  }
}

/* Desktop: move buttons to left / right sides and keep square 56x56 */
@media (min-width: 641px) {
  .lightbox-nav {
    top: 50%;
    bottom: auto;
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .lightbox-prev {
    left: 20px;
    right: auto;
    transform: translateY(-50%);
  }

  .lightbox-next {
    left: auto;
    right: 20px;
    transform: translateY(-50%);
  }

  .lightbox.controls-hidden .lightbox-prev,
  .lightbox.controls-hidden .lightbox-next {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
  }
}


.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1200;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-banner__content {
  width: min(100%, 720px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-banner__link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 161, 74, 0.45);
}

.cookie-banner__link:hover {
  color: var(--gold-hover);
  border-bottom-color: rgba(226, 187, 104, 0.65);
}

.cookie-banner__link:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__button {
  min-width: 150px;
}

@media (max-width: 720px) {
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .cookie-banner__button {
    width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */
.privacy-main {
  padding-top: 92px;
}

.privacy-hero {
  padding: 72px 0 34px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at top, rgba(201, 161, 74, 0.12), transparent 52%),
    #060606;
  border-bottom: 1px solid var(--line);
}

.privacy-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.privacy-hero .lead {
  max-width: 760px;
  color: var(--text-muted);
}

.privacy-section {
  padding: 42px 0 80px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.privacy-card,
.privacy-content {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.privacy-card {
  position: sticky;
  top: 120px;
  padding: 24px;
}

.privacy-card h2,
.privacy-content h2 {
  margin: 0 0 12px;
}

.privacy-card p,
.privacy-card li,
.privacy-content p,
.privacy-content li {
  color: var(--text-muted);
}

.privacy-card ul,
.privacy-content ul {
  margin: 0;
  padding-left: 20px;
}

.privacy-card ul + h2,
.privacy-content section + section {
  margin-top: 28px;
}

.privacy-content {
  padding: 30px;
}

.privacy-content section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.privacy-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-content h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.privacy-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(201, 161, 74, 0.32);
  background: rgba(201, 161, 74, 0.08);
}

.privacy-meta {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.privacy-meta div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.privacy-content strong,
.privacy-card strong {
  color: var(--text-strong);
}

@media (max-width: 980px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .privacy-hero {
    padding: 58px 0 28px;
  }

  .privacy-content,
  .privacy-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
}
