/* ============================================================
   DREW-BRUK | Professional Stylesheet
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --amber:        #e6a315;
  --amber-light:  #f5c048;
  --amber-dark:   #c4880a;
  --amber-dim:    rgba(230, 163, 21, 0.15);

  --dark-900: #0a0a0c;
  --dark-800: #111114;
  --dark-700: #1c1c21;
  --dark-600: #28282f;
  --dark-500: #3c3c46;
  --mid:      #68687a;

  --light-50:  #fafaf8;
  --light-100: #f5f4f0;
  --light-200: #e8e7e2;
  --white:     #ffffff;

  --text-dark:  #18181c;
  --text-mid:   #4a4a58;
  --text-light: rgba(255, 255, 255, 0.72);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.14);

  --transition: 200ms ease;

  --header-top-h:  38px;
  --header-main-h: 76px;
  --header-h: calc(var(--header-top-h) + var(--header-main-h));

  --font-display: 'Barlow Condensed', 'Trebuchet MS', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Segoe UI', 'Trebuchet MS', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-900); }
::-webkit-scrollbar-thumb { background: var(--amber-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }
* { scrollbar-width: thin; scrollbar-color: var(--amber-dark) var(--dark-900); }
body {
  font-family: var(--font-body);
  background: var(--light-100);
  color: var(--text-dark);
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.btn--amber {
  background: var(--amber);
  color: var(--dark-900);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 163, 21, 0.40);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn--lg { padding: 15px 34px; font-size: 1.02rem; }

/* ---------- Sections ---------- */
.section        { padding: 96px 0; }
.section--light { background: var(--light-100); }
.section--dark  { background: var(--dark-800); }
.section--contact { background: var(--light-100); padding: 56px 0; }

/* ---------- Section header ---------- */
.section-header       { text-align: center; margin-bottom: 40px; }
.section-header--left { text-align: left; }
.section-header--light .section-header__title,
.section-header--light .section-header__sub { color: var(--white); }
.section-header--light .section-header__badge { color: var(--amber); border-color: var(--amber); }

.section-header__badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--amber);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-header__sub {
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Top bar */
.header__topbar { background: var(--dark-900); }
.header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-top-h);
}
.header__topbar-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition);
}
.header__topbar-link:hover { color: var(--amber); }
.header__topbar-sep { color: var(--dark-500); font-size: 0.8rem; }
.header__topbar-tagline {
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__topbar-badge {
  background: var(--amber);
  color: var(--dark-900);
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Main bar */
.header__main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
}
.header__main .container {
  padding-left: 16px;
  padding-right: 16px;
}
.header__main-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-main-h);
}
.header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.header__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.header__logo-placeholder {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header__logo-db {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.04em;
}
.header__logo-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--amber-dark); }
.nav__link:hover::after { transform: scaleX(1); }

.header__cta { flex-shrink: 0; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: var(--radius-xs);
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 3px solid var(--amber);
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms ease;
}
.mobile-nav--open { max-height: 440px; }
.mobile-nav__link {
  display: block;
  padding: 13px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-200);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__link:hover      { background: var(--light-100); }
.mobile-nav__link--cta       { color: var(--amber-dark); font-weight: 700; }
.mobile-nav__link--cta:hover { background: rgba(230, 163, 21, 0.08); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--dark-900);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(230, 163, 21, 0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(230, 163, 21, 0.04) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(230, 163, 21, 0.04) 25%, transparent 25%),
    linear-gradient(315deg, rgba(230, 163, 21, 0.04) 25%, transparent 25%);
  background-size: 56px 56px;
  background-position: 0 0, 28px 0, 28px -28px, 0 28px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

/* Hero – left brand */
.hero__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__brand-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.hero__brand-fallback {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.06em;
}
.hero__brand-tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Hero – center nav */
.hero__nav {
  display: flex;
  flex-direction: column;
}
.hero__nav-heading {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.hero__nav-link {
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.hero__nav-link:last-child { border-bottom: none; }
.hero__nav-link:hover { color: var(--amber); }

/* Hero – right contact */
.hero__contact {
  display: flex;
  flex-direction: column;
}
.hero__contact-heading {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.hero__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.hero__contact-row:last-child { border-bottom: none; }
a.hero__contact-row:hover { color: var(--amber); }
.hero__contact-info {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.26);
  font-size: 1.5rem;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--amber); }
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  gap: 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.10);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1;
}
.stats-bar__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.60);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  perspective: 1200px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--amber);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:nth-child(1) { transform: rotateY(8deg);  box-shadow: 12px 20px 48px rgba(0,0,0,0.18), 4px 6px 16px rgba(0,0,0,0.10); }
.service-card:nth-child(3) { transform: rotateY(-8deg); box-shadow: -12px 20px 48px rgba(0,0,0,0.18), -4px 6px 16px rgba(0,0,0,0.10); }
.service-card:hover {
  transform: rotateY(0deg) translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.service-card__icon-wrap {
  width: 100%;
  height: 180px;
  background: var(--amber-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin-bottom: 20px;
}
.service-card__list { margin-bottom: 24px; flex: 1; }
.service-card__list-item {
  font-size: 0.87rem;
  color: var(--text-mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--light-200);
}
.service-card__list-item:last-child { border-bottom: none; }
.service-card__check { color: var(--amber); font-weight: 800; }
.service-card__cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber-dark);
  transition: color var(--transition);
  margin-top: auto;
}
.service-card__cta:hover { color: var(--amber); }

/* Accordion toggle button — hidden on desktop */
.service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.service-card__toggle { display: none; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--dark-700);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--dark-600);
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}
.why-card__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 18px;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card__text {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.68;
}

/* ============================================================
   AREA SECTION
   ============================================================ */
.area-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-section__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 24px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.area-tag {
  padding: 5px 13px;
  background: var(--amber);
  color: var(--dark-900);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.area-map-img {
  width: 100%;
  max-width: 520px;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  background: transparent;
  mix-blend-mode: multiply;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-card__img {
  transform: scale(1.06);
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}
.gallery-card__title {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.gallery-card__location {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   RENTAL
   ============================================================ */
.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.rental-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.rental-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.rental-card__media {
  height: 240px;
  background: var(--dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rental-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.rental-card__media--placeholder { font-size: 4rem; }
.rental-card__body { padding: 30px; }
.rental-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.rental-card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin-bottom: 20px;
}
.rental-card__specs { margin-bottom: 26px; }
.rental-card__specs li {
  font-size: 0.87rem;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--light-200);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rental-card__specs li:last-child { border-bottom: none; }
.rental-card__specs li span { color: var(--amber); font-weight: 800; }

/* ============================================================
   CONTACT
   ============================================================ */
/* Contact layout: cards left, map right */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-left { display: flex; flex-direction: column; gap: 16px; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.contact-map-wrap {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  min-height: 300px;
  border: none;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  border: none;
}
.contact-card {
  background: #ffffff;
  border: 1px solid #e8e5dd;
  border-radius: 14px;
  padding: 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  box-shadow: 0 6px 24px rgba(230,163,21,0.16);
  transform: translateY(-3px);
}
.contact-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.contact-card__icon-wrap svg {
  width: 20px;
  height: 20px;
}
.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
}
.contact-card__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-900);
  line-height: 1.5;
  word-break: break-all;
}
.contact-card__value--small { font-size: 0.9rem; font-weight: 600; }

/* CTA bar below cards */
.contact-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--amber);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 4px 20px rgba(230,163,21,0.35);
}
.contact-cta-bar__text {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}
.contact-cta-bar .btn--amber {
  background: #ffffff;
  color: var(--amber-dark);
  border-color: #ffffff;
  box-shadow: none;
}
.contact-cta-bar .btn--amber:hover {
  background: var(--dark-900);
  color: #ffffff;
  border-color: var(--dark-900);
}
.contact-address {
  text-align: center;
  font-size: 0.85rem;
  color: var(--mid);
  padding-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-900);
  border-top: 1px solid var(--dark-600);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 32px;
  padding-bottom: 28px;
  align-items: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__brand--left {
  align-items: flex-start;
}
.footer__logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(1.15);
}
.footer__logo--lg {
  height: 80px;
  margin-bottom: 0;
}
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.footer__col-title {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer__nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  font-size: 0.87rem;
  color: var(--text-light);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer__nav-link:hover { color: var(--amber); }
.footer__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--amber);
}
.footer__bottom {
  border-top: 1px solid var(--dark-600);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: center;
}
.footer__bottom span {
  font-size: 0.8rem;
  color: var(--mid);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.cookie-bar__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--amber);
}
.cookie-bar__text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}
.cookie-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-bar__btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.cookie-bar__btn--accept {
  background: var(--amber);
  color: var(--dark-900);
}
.cookie-bar__btn--accept:hover { background: var(--amber-light); }
.cookie-bar__btn--decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--dark-500);
}
.cookie-bar__btn--decline:hover {
  background: var(--dark-600);
  color: var(--white);
}

/* Cookie banner transition */
.cookie-enter-active, .cookie-leave-active {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cookie-enter-from, .cookie-leave-to {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

/* Mobile */
@media (max-width: 640px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    bottom: 12px;
    width: calc(100% - 24px);
    gap: 14px;
  }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__btn { flex: 1; text-align: center; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.6s ease calc(var(--reveal-delay, 0ms)),
    transform 0.6s ease calc(var(--reveal-delay, 0ms));
}
[data-reveal][data-revealed] {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablet landscape (≤1100px) --- */
@media (max-width: 1100px) {
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-layout  { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 300px; }
  .contact-map     { min-height: 300px; }
  .footer__inner   { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}

/* --- Tablet portrait (≤900px) --- */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  /* Header */
  .nav                { display: none; }
  .header__cta        { display: none; }
  .header__hamburger  { display: flex; }
  .mobile-nav         { display: flex; }
  .header__brand      { margin-left: 0; }

  /* Stats — ukryty na mobile */
  .stats-bar { display: none; }

  /* Sections */
  .section           { padding: 72px 0; }
  .section--contact  { padding: 56px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 24px; perspective: none; }
  .service-card:nth-child(1),
  .service-card:nth-child(3) { transform: none; box-shadow: var(--shadow-card); }

  /* Why us */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Area */
  .area-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .area-map-img        { max-width: 100%; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Contact */
  .contact-layout  { grid-template-columns: 1fr; }
  .contact-cards   { grid-template-columns: 1fr 1fr; }
  .contact-map-wrap { min-height: 260px; }
  .contact-map     { min-height: 260px; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 32px;
  }
  .footer__brand   { order: -1; }
  .footer__nav-link { justify-content: center; }
}

/* --- Mobile (≤640px) --- */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section   { padding: 56px 0; }
  .section--contact { padding: 40px 0; }

  /* Header topbar */
  .header__topbar-tagline { display: none; }
  .header__topbar-inner   { justify-content: center; }
  .header__topbar-contact { gap: 8px; font-size: 0.75rem; justify-content: center; flex: 1; }

  /* Services */
  .services-grid { gap: 16px; }
  .service-card  { padding: 24px 20px; }
  .service-card__icon-wrap { height: 160px; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card  { padding: 22px 18px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Contact cards — stack on very small screens */
  .contact-cards { grid-template-columns: 1fr; gap: 10px; }
  .contact-card__value { font-size: 0.9rem; word-break: break-word; }

  /* CTA bar */
  .contact-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
  }
  .contact-cta-bar .btn--amber { width: 100%; justify-content: center; }

  /* Section headers */
  .section-header__title { font-size: 1.7rem; }
  .section-header__sub   { font-size: 0.9rem; }

  .footer__col--nav { display: none; }
  .footer__inner { gap: 24px; padding-top: 48px; padding-bottom: 32px; }
  .footer__logo  { height: 70px; }

  /* Services — accordion on mobile */
  .service-card__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    background: var(--amber);
    color: var(--dark-900);
    border: none;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
  }
  .service-card__toggle svg {
    transition: transform 0.25s ease;
  }
  .service-card--open .service-card__toggle svg {
    transform: rotate(180deg);
  }
  .service-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .service-card--open .service-card__body {
    max-height: 600px;
  }

  /* Buttons */
  .btn--lg { padding: 13px 24px; font-size: 0.95rem; }
}
