/* ============================================================
   BABLOCK — LUGGAGE STORAGE LOCKERS IN TIRANA
   Design System & Stylesheet
   ============================================================ */

/* 1. FONTS
-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* 2. RESET & BASE
-------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* 3. CSS VARIABLES
-------------------------------------------------------------- */
:root {
  --dark:        #0d1117;
  --dark-2:      #161b22;
  --olive:       #2e3222;
  --olive-mid:   #3d4430;
  --olive-light: #505a3d;
  --gold:        #c8a96e;
  --gold-light:  #dfc08a;
  --white:       #ffffff;
  --off-white:   #f8f7f3;
  --light:       #f0efe9;
  --border:      #e5e3db;
  --text:        #1a1a2e;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-gold: 0 4px 24px rgba(200,169,110,.25);

  --nav-h:       72px;
  --section-pad: clamp(64px, 8vw, 112px);
}

/* 4. TYPOGRAPHY
-------------------------------------------------------------- */
.h1, h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.h2, h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
.h3, h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
.h4, h4 { font-size: 1.1rem; font-weight: 600; line-height: 1.35; }
p { max-width: 68ch; }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-muted); }

/* 5. LAYOUT UTILITIES
-------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--olive { background: var(--olive); color: var(--white); }
.section--light { background: var(--off-white); }
.section--white { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.65;
}
.section-subtitle--light { color: rgba(255,255,255,.65); }
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* 6. BUTTONS
-------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn--find-us {
  border-color: rgba(255,255,255,.55);
  animation: find-us-pulse 2.8s ease-in-out infinite;
}
.btn--find-us:hover {
  animation: none;
}
@keyframes find-us-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.18); }
  55% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.hero__proximity-hint {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  margin-top: 10px;
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--olive);
  transform: translateY(-2px);
}
.btn-olive {
  background: var(--olive);
  color: var(--white);
}
.btn-olive:hover {
  background: var(--olive-mid);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: .85rem; border-radius: var(--radius-sm); }

/* 7. NAVIGATION
-------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--olive);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switch {
  position: relative;
}
.lang-switch__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.lang-switch__trigger:hover { background: rgba(255,255,255,.14); }
.lang-switch__trigger .flag { font-size: 1.1rem; }
.lang-switch__arrow {
  display: inline-block;
  width: 10px; height: 10px;
  position: relative;
  margin-left: 2px;
}
.lang-switch__arrow::before,
.lang-switch__arrow::after {
  content: '';
  position: absolute;
  width: 6px; height: 1.5px;
  background: currentColor;
  top: 50%;
}
.lang-switch__arrow::before { left: 0; transform: rotate(45deg) translateY(-50%); }
.lang-switch__arrow::after  { right: 0; transform: rotate(-45deg) translateY(-50%); }

.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 150px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all .2s ease;
  box-shadow: var(--shadow-lg);
}
.lang-switch.open .lang-switch__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.lang-switch__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  transition: background .15s, color .15s;
}
.lang-switch__dropdown a:hover {
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.lang-switch__dropdown a.active {
  color: var(--gold);
}
.lang-switch__dropdown .flag { font-size: 1.2rem; }

/* Mobile Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(13,17,23,.96);
  backdrop-filter: blur(20px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-110%);
  transition: transform .3s ease;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__mobile-menu.open { transform: translateY(0); }
.nav__mobile-menu a {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav__mobile-menu a:hover {
  background: rgba(255,255,255,.07);
  color: var(--white);
}
.nav__mobile-lang {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__mobile-lang a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px !important;
  font-size: .88rem !important;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
}
.nav__mobile-lang a.active { color: var(--gold) !important; }

/* 8. HERO
-------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,17,23,.90) 0%,
    rgba(46,50,34,.75) 60%,
    rgba(13,17,23,.60) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.30);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 52ch;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: .9rem;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.40);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.40));
}

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

/* 9. STATS BAR
-------------------------------------------------------------- */
.stats {
  background: var(--olive);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
  position: relative;
  transition: background .2s;
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: rgba(255,255,255,.04); }
.stats__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stats__label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* 10. FEATURES
-------------------------------------------------------------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  width: 52px; height: 52px;
  background: rgba(200,169,110,.13);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--olive);
}
.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card__desc {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}

/* 11. HOW IT WORKS
-------------------------------------------------------------- */
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--olive-light));
  z-index: 0;
}
.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.how__step-num {
  width: 64px; height: 64px;
  background: var(--olive);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.how__step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.how__step-desc {
  font-size: .87rem;
  color: rgba(255,255,255,.60);
  line-height: 1.6;
  max-width: none;
}

/* 12. PRICING
-------------------------------------------------------------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}
.pricing-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
}
.pricing-card__head {
  background: var(--olive);
  padding: 28px 32px;
  color: var(--white);
}
.pricing-card--featured .pricing-card__head {
  background: linear-gradient(135deg, var(--olive), var(--olive-mid));
}
.pricing-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-card__dims {
  font-size: .82rem;
  color: rgba(255,255,255,.60);
  margin-bottom: 14px;
}
.pricing-card__from {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-card__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}
.pricing-card__per {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.pricing-card__body { padding: 28px 32px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.pricing-table tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.pricing-table tr:last-child { border-bottom: none; }
.pricing-table tr:hover { background: var(--off-white); }
.pricing-table td {
  padding: 10px 4px;
  color: var(--text-muted);
}
.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}
.pricing-table__note {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-light);
}
.pricing-table__note span { color: var(--olive); font-weight: 600; }

/* 13. GALLERY
-------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:first-child { height: 440px; }
.gallery__item:not(:first-child) { height: 214px; }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
}
.gallery__item:hover .gallery__overlay { background: rgba(0,0,0,.15); }

/* 14. FAQ
-------------------------------------------------------------- */
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color .2s;
  background: none;
  border: none;
}
.faq__question:hover { color: var(--olive); }
.faq__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: all .25s;
  line-height: 1;
}
.faq__item.open .faq__icon {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq__answer-inner {
  padding-bottom: 20px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq__item.open .faq__answer { max-height: 300px; }

/* 15. LOCATION
-------------------------------------------------------------- */
.location__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.location__map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(30%);
}
.location__info { padding-top: 8px; }
.location__info h2 { margin-bottom: 16px; }
.location__info .section-label { margin-bottom: 8px; }
.location__detail {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.location__detail:last-of-type { border-bottom: none; }
.location__detail-icon {
  width: 40px; height: 40px;
  background: var(--olive);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.location__detail-text strong {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.location__detail-text span {
  font-size: .97rem;
  font-weight: 500;
  color: var(--text);
}
.location__cta { margin-top: 28px; }

/* 16. BLOG PREVIEW
-------------------------------------------------------------- */
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-card__img {
  height: 200px;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card__tag {
  background: var(--off-white);
  color: var(--olive);
  padding: 3px 10px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .75rem;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 10px;
}
.blog-card__excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  max-width: none;
}
.blog-card__link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap .2s;
}
.blog-card:hover .blog-card__link { gap: 10px; }

/* 17. CTA STRIP
-------------------------------------------------------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--olive), var(--olive-mid));
  padding: 64px 0;
  text-align: center;
}
.cta-strip__title {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.cta-strip__sub {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  margin: 0 auto 28px;
}
.cta-strip__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 18. FOOTER
-------------------------------------------------------------- */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  opacity: .92;
}
.footer__brand-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.50);
  line-height: 1.65;
  max-width: 30ch;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.70);
  font-size: .85rem;
  transition: background .2s, color .2s;
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--dark);
}
.footer__col-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer__contact-item a { transition: color .2s; }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.30);
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.65); }

/* 19. BLOG PAGE
-------------------------------------------------------------- */
.blog-hero {
  background: var(--olive);
  padding: calc(var(--nav-h) + 56px) 0 56px;
  text-align: center;
  color: var(--white);
}
.blog-hero__title { margin-bottom: 12px; }
.blog-hero__sub { color: rgba(255,255,255,.65); max-width: 48ch; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: var(--section-pad) 0;
}

/* 20. SINGLE BLOG POST
-------------------------------------------------------------- */
.post-hero {
  position: relative;
  height: clamp(300px, 45vw, 520px);
  overflow: hidden;
  background: var(--dark);
}
.post-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
}
.post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,.85) 0%, transparent 60%);
}
.post-hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px clamp(16px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.post-hero__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.post-hero__title {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  max-width: 18ch;
}
.post-hero__meta {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-top: 12px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: var(--section-pad) 0;
  align-items: start;
}
.post-content { max-width: none; }
.post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text);
}
.post-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}
.post-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: none;
  font-size: .97rem;
}
.post-content ul, .post-content ol {
  list-style: none;
  margin: 0 0 18px;
}
.post-content ul li, .post-content ol li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.65;
}
.post-content ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: .85rem;
}
.post-content ol { counter-reset: li; }
.post-content ol li::before {
  content: counter(li) '.';
  counter-increment: li;
  position: absolute; left: 0;
  color: var(--olive);
  font-weight: 700;
  font-size: .85rem;
}
.post-content strong { color: var(--text); font-weight: 700; }
.post-cta-box {
  background: linear-gradient(135deg, var(--olive), var(--olive-mid));
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  color: var(--white);
}
.post-cta-box h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--white); }
.post-cta-box p { color: rgba(255,255,255,.70); font-size: .9rem; margin-bottom: 16px; max-width: none; }
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card__title {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.sidebar-card__links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card__links a {
  font-size: .88rem;
  color: var(--olive);
  font-weight: 500;
  transition: color .2s;
}
.sidebar-card__links a:hover { color: var(--gold); }

/* 21. LEGAL PAGES
-------------------------------------------------------------- */
.legal-hero {
  background: var(--olive);
  padding: calc(var(--nav-h) + 48px) 0 48px;
  color: var(--white);
}
.legal-content {
  padding: var(--section-pad) 0;
  max-width: 760px;
}
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 10px; }
.legal-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; max-width: none; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { color: var(--text-muted); font-size: .95rem; padding: 3px 0; }

/* 22. ANIMATIONS
-------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* 23. RESPONSIVE
-------------------------------------------------------------- */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how__steps::before { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.10); }
  .stats__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.10); }
  .stats__item:last-child { border-bottom: none; }
  .location__inner { grid-template-columns: 1fr; }
  .location__map { height: 320px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .lang-switch { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:first-child { grid-column: span 2; height: 260px; }
  .gallery__item:not(:first-child) { height: 180px; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:first-child { grid-column: span 1; height: 220px; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* 24. REDUCED MOTION
-------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 25. PRINT
-------------------------------------------------------------- */
@media print {
  .nav, .hero__scroll, .cta-strip, .footer { display: none; }
  body { font-size: 12pt; }
}
