/* ============================================================
   LAND4TRAVEL.COM — Premium Design System
   ============================================================ */

/* ── Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  /* Colors */
  --bg-dark:      #243128;
  --bg-deep:      #1b241d;
  --bg-darkest:   #111812;
  --sand:         #d7c2a3;
  --sand-light:   #efe4d3;
  --cream:        #f7f2ea;
  --cream-dark:   #eee8dd;
  --text:         #1f1f1a;
  --text-muted:   #4a4842;
  --white:        #ffffff;
  --accent:       #b88746;
  --accent-soft:  #caa36a;
  --accent-pale:  #e8d5b5;
  --muted:        #6e6a62;
  --border:       rgba(184,135,70,0.2);
  --border-light: rgba(0,0,0,0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-xxl: 10rem;

  /* Sizing */
  --container:   1320px;
  --container-sm: 860px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.14);
  --shadow-lg:  0 20px 80px rgba(0,0,0,0.22);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;

  /* Transitions */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --duration:   0.4s;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul { list-style: none; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }

/* ── Typography ─────────────────────────────────────────── */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
}

.display-section {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-card {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-light {
  color: var(--sand);
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-sm {
  padding: var(--space-sm) 0 var(--space-lg);
}

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: var(--space-md) 0;
}

.divider-center { margin: var(--space-md) auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,135,70,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  color: var(--accent);
  padding: 0.5rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration) var(--ease);
}

.btn-text:hover::before { width: 100%; }

.btn-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration) var(--ease);
}

.btn-arrow:hover svg { transform: translateX(4px); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.8rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
}

.navbar.scrolled {
  background: var(--bg-deep);
  padding: 1.1rem var(--space-md);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;

  transition: opacity var(--duration) var(--ease);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration) var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  box-shadow: none;
  width: 36px;
  height: 36px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  pointer-events: none;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

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

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--duration);
}

.nav-mobile a:hover { opacity: 1; color: var(--accent); }

.nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── Nav Dropdown ──────────────────────────────────────────── */
.nav-has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1a1814;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.75rem;
  width: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 500;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  text-transform: none;
  letter-spacing: normal;
}

.nav-dropdown a::after { display: none; }

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  gap: 2px;
  transition: background 0.15s;
}

.nav-dropdown-item:hover { background: rgba(255, 255, 255, 0.07); }

.nav-dropdown-country {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
}

.nav-dropdown-title {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  font-family: var(--font-display);
}

.nav-dropdown-footer {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.nav-dropdown-footer a {
  font-size: 0.72rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.15s;
}

.nav-dropdown-footer a:hover { opacity: 1; }

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 36, 29, 0.72) 0%,
    rgba(27, 36, 29, 0.45) 50%,
    rgba(27, 36, 29, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  width: 100%;
}

.hero-content .eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero-content .display-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 1.0s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite 2s;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ── Trust Strip ─────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-dark);
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--sand);
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  opacity: 0.7;
}

.trust-item-text {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.trust-item-text strong {
  display: block;
  font-weight: 500;
  color: var(--white);
  font-size: 0.9rem;
}

/* ── Section Labels ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header.left { text-align: left; }

.section-header .display-section {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-header .lead {
  max-width: 600px;
  margin: 0 auto;
}

.section-header.left .lead {
  margin: 0;
}

/* ── Categories Grid ─────────────────────────────────────── */
.categories {
  background: var(--cream);
  padding-bottom: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.category-card:hover .category-bg {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,36,29,0.85) 0%, rgba(27,36,29,0.1) 60%);
  transition: background var(--duration) var(--ease);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(27,36,29,0.9) 0%, rgba(27,36,29,0.3) 60%);
}

.category-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--white);
}

.category-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.category-count {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
}

.category-card:hover .category-count {
  opacity: 1;
  transform: translateY(0);
}

/* ── Offer Cards ─────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.offer-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.offer-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  background: var(--bg-dark);
  transition: transform 0.7s var(--ease);
}

.offer-card:hover .offer-card-image-placeholder {
  transform: scale(1.06);
}

.offer-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.badge-type {
  background: var(--bg-dark);
  color: var(--sand-light);
}

.badge-featured {
  background: var(--accent);
  color: var(--white);
}

.badge-difficulty {
  background: rgba(0,0,0,0.5);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.offer-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.offer-country {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.offer-duration {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.offer-card-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.offer-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.offer-card-dates {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin: 0.25rem 0 0.75rem;
}

.offer-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.4rem;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
  margin-top: auto;
}

.offer-price {
  display: flex;
  flex-direction: column;
}

.offer-price-from {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.offer-price-amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.offer-price-currency {
  font-size: 0.85rem;
  color: var(--muted);
}

.offer-card-price-extra {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-top: 2px;
  opacity: 0.85;
}

.offer-card-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.2rem;
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.offer-rating-stars {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ── Why Us ──────────────────────────────────────────────── */
.why-us {
  background: var(--bg-dark);
  color: var(--white);
}

.why-us .display-section { color: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: var(--space-lg);
}

.benefit-item {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.benefit-item:hover {
  border-color: var(--accent);
  background: rgba(184,135,70,0.06);
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.benefit-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Gallery Masonry ─────────────────────────────────────── */
.gallery-section {
  background: var(--cream-dark);
  overflow: hidden;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img, .gallery-item .gal-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gal-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.05em;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,36,29,0);
  transition: background var(--duration) var(--ease);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(27,36,29,0.25);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  background: var(--cream);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.4rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--duration) var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-pale);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sand);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-trip {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.testimonial-stars {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: var(--space-xl) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,36,29,0.75);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.cta-banner .display-section {
  color: var(--white);
  margin: 1rem 0;
}

.cta-banner .lead {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-darkest);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand .nav-logo {
  margin-bottom: 1.2rem;
  display: inline-block;
}

.footer-brand .nav-logo-img {
  height: 28px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--duration) var(--ease);
}

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

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--duration) var(--ease);
  font-weight: 300;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

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

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,36,29,0.88) 0%, rgba(27,36,29,0.4) 60%, rgba(27,36,29,0.15) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-lg) var(--space-md) var(--space-lg);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

.page-hero-content .display-section {
  color: var(--white);
}

/* ── Offer Grid Page ─────────────────────────────────────── */
.offers-controls {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 66px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.offers-controls-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.filter-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.filter-select {
  appearance: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 2rem 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236e6a62' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  transition: border-color var(--duration);
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
}

.offers-count {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Offer list page grid */
.offers-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: var(--space-sm) 0 var(--space-lg);
}

.offer-card.hidden {
  display: none;
}

/* ── Offer Detail Page ───────────────────────────────────── */
.offer-detail-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

/* Video hero */
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.offer-detail-hero .page-hero-content {
  padding-bottom: var(--space-lg);
}

.offer-detail-hero .badge { margin-bottom: 1rem; }

.offer-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-lg);
  padding: var(--space-sm) 0 var(--space-lg);
  align-items: start;
}

/* Reset browser default margin on main element */
.offer-detail-layout main {
  margin: 0;
  padding: 0;
}

.offer-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.sidebar-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.sidebar-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin: 0.4rem 0 0.2rem;
}

.sidebar-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.4rem;
  margin-bottom: 1.6rem;
}

.sidebar-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.sidebar-meta-key {
  color: var(--muted);
  font-weight: 300;
}

.sidebar-meta-val {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

.price-toggle {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.price-toggle-btn {
  flex: 1;
  padding: 0.45rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.price-toggle-btn:hover {
  border-color: var(--accent-soft);
  color: var(--accent);
}

.price-toggle-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.sidebar-card .btn-outline-dark {
  margin-bottom: 1.6rem;
}

.sidebar-price-extra {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  font-family: var(--font-display);
  line-height: 1.2;
  display: block;
  letter-spacing: -0.02em;
}

.offer-section {
  margin-bottom: var(--space-lg);
}

.offer-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.offer-section-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  white-space: pre-line;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text);
}

.highlight-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.included-check {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Itinerary */
.itinerary-list {
  position: relative;
}

.itinerary-list::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
}

.itinerary-day {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.itinerary-day-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.itinerary-day-content { flex: 1; }

.itinerary-day-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.itinerary-day-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── About Page ──────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img, .about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--sand);
  background: var(--bg-dark);
  border-radius: var(--radius-md);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-lg);
}

.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.value-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.2rem;
  background: var(--sand);
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  margin-bottom: 1.2rem;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sand);
  font-weight: 300;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.8rem;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.8rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.2rem;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-card-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.contact-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--duration), box-shadow var(--duration);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,135,70,0.12);
  background: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.map-placeholder {
  height: 400px;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.map-placeholder::after {
  content: 'Mapa — Google Maps';
  position: absolute;
}

/* ── FAQ Page ────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  gap: 1rem;
  transition: color var(--duration) var(--ease);
  user-select: none;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
  color: var(--accent);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s var(--ease);
}

.faq-answer-inner {
  padding-bottom: 1.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ── Reveal Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }

/* ── Gallery Detail Images ────────────────────────────────── */
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 120px;
  grid-auto-flow: dense;
  gap: 6px;
  max-height: 400px;
  overflow-y: auto;
  margin: 0 0 var(--space-md);
}

.detail-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

/* Landscape: 2 kolumny × 1 wiersz */
.detail-gallery-item.landscape {
  grid-column: span 2;
}

/* Portrait: 1 kolumna × 2 wiersze */
.detail-gallery-item.portrait {
  grid-row: span 2;
}

.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

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

.detail-gallery-item-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.3s;
}

.detail-gallery-item:hover .detail-gallery-item-more {
  background: rgba(0,0,0,0.70);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity var(--duration);
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.26); }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--accent);
  padding: 2.5rem 0;
}

.stats-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
  font-weight: 400;
}

/* ── Notification Toast ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-dark);
  color: var(--white);
  padding: 1rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s var(--ease);
  border-left: 3px solid var(--accent);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .offers-grid,
  .offers-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 3rem;
  }

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

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

  .offer-sidebar {
    position: static;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-mosaic .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Logo mniejsze na mobile */
  .nav-logo-img {
    height: 22px;
  }

  .hero-content { width: 100%; }

  /* Karty zespołu — na mobile pionowo */
  .team-card-horizontal {
    grid-template-columns: 1fr !important;
  }
  .team-card-horizontal .team-photo {
    min-height: 300px !important;
  }

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

  .form-row { grid-template-columns: 1fr; }

  .trust-items { gap: 2rem; }

  .testimonials-track { grid-template-columns: 1fr; }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 180px);
  }

  .gallery-mosaic .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .about-values { grid-template-columns: 1fr; }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .offers-controls-inner { gap: 0.8rem; }

  .contact-form { padding: 2rem 1.5rem; }

  .stats-items { gap: 1.5rem; }

  /* Galeria — 3 kolumny na tablecie */
  .detail-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 480px) {
  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
  }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

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

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

  .page-hero { min-height: 55vh; }
}
