/* ============================================
   KAUKSI TELKLAAGER — Warm Rustic Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --bark:    #2c1a0e;
  --bark2:   #3d2610;
  --pine:    #1a2e1a;
  --sand:    #f2e8d5;
  --sand2:   #e8d9bf;
  --moss:    #4a7c59;
  --moss2:   #5a9469;
  --amber:   #c8782a;
  --amber2:  #e8943a;
  --cream:   #fdf6ec;
  --text:    #1e1008;
  --muted:   #6b4c30;
  --line:    rgba(44,26,14,.15);
  --line2:   rgba(44,26,14,.08);
  --shadow:  0 8px 40px rgba(44,26,14,.18);
  --shadow2: 0 2px 12px rgba(44,26,14,.10);
  --r:       16px;
  --r2:      24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }

body {
  font-family: 'Lato', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  /* subtle linen texture */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23fdf6ec'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23f5eadb' opacity='.4'/%3E%3Crect x='2' y='2' width='1' height='1' fill='%23f5eadb' opacity='.3'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,246,236,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { font-size: 22px; }
.brand__text {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--bark);
  letter-spacing: .3px;
}

.menu { display: flex; gap: 6px; align-items: center; }
.menu > a {
  padding: 8px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  color: var(--muted);
  transition: background .18s, color .18s;
}
.menu > a:hover { background: var(--line2); color: var(--bark); }
.menu__cta {
  padding: 10px 16px !important; border-radius: 999px !important;
  background: var(--amber) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 12px rgba(200,120,42,.35);
  transition: background .18s, transform .15s !important;
}
.menu__cta:hover { background: var(--amber2) !important; transform: translateY(-1px); }

.menuToggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--sand2);
  color: var(--bark);
  padding: 10px 14px; border-radius: 12px;
  font-size: 18px; cursor: pointer;
}

/* language */
.lang {
  display: inline-flex; gap: 4px;
  margin-left: 10px; padding-left: 10px;
  border-left: 1px solid var(--line);
}
.lang a {
  padding: 5px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all .15s;
}
.lang a:hover { border-color: var(--line); background: var(--sand2); }
.lang a.is-active {
  border-color: var(--amber);
  background: rgba(200,120,42,.12);
  color: var(--amber);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background-image: url("./img/gallery/hero.png");
  background-size: cover;
  background-position: center 55%;
}
.hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,10,4,.72) 0%,
    rgba(20,10,4,.45) 45%,
    rgba(20,10,4,.10) 80%,
    transparent 100%
  );
}
.hero__content { position: relative; padding: 80px 0; }
.hero__box {
  max-width: 680px;
}

.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(253,246,236,.15);
  border: 1px solid rgba(253,246,236,.30);
  color: var(--sand); font-size: 13px; font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--sand);
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__lead {
  margin: 0 0 28px;
  color: rgba(242,232,213,.88);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  max-width: 54ch;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 10px; }
.stat {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(253,246,236,.12);
  border: 1px solid rgba(253,246,236,.20);
  backdrop-filter: blur(6px);
  color: var(--sand);
}
.stat__k { font-size: 16px; }
.stat__v { font-size: 13px; font-weight: 700; }

.fineprint { margin-top: 20px; color: rgba(242,232,213,.65); font-size: 13px; }

/* ── STRIP ── */
.strip {
  background: var(--bark);
  border-top: 3px solid var(--amber);
}
.strip__inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.strip__item {
  padding: 16px 20px;
  text-align: center;
  color: var(--sand);
  font-size: 13px; font-weight: 700;
  letter-spacing: .3px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.strip__item:last-child { border-right: none; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--alt {
  background: var(--sand2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--dark {
  background: var(--bark);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section__head { margin-bottom: 36px; }
.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--amber);
}
.section--dark .section__head h2 { color: var(--sand); }
.section__head p { margin: 0; color: var(--muted); max-width: 66ch; font-size: 17px; }
.section__label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 700;
  gap: 8px; transition: all .18s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,120,42,.40);
}
.btn--primary:hover { background: var(--amber2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,120,42,.45); }
.btn--secondary {
  background: transparent;
  border: 2px solid rgba(253,246,236,.40);
  color: var(--sand);
}
.btn--secondary:hover { background: rgba(253,246,236,.12); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--bark);
}
.btn--ghost:hover { background: var(--sand2); border-color: var(--muted); }
.btn--moss {
  background: var(--moss);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74,124,89,.35);
}
.btn--moss:hover { background: var(--moss2); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ── CARDS ── */
.card {
  padding: 24px; border-radius: var(--r2);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
}
.muted { color: var(--muted); }
.note { margin-top: 12px; color: var(--muted); font-size: 13px; }

/* ── SERVICE CARDS ── */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2,1fr); }

.serviceCard {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
  transition: transform .2s, box-shadow .2s;
}
.serviceCard:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(44,26,14,.22); }

.serviceCard__img {
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}
.serviceCard__img > a.lightbox {
  display: block; flex: 1; min-height: 0;
}
.serviceCard__img > a.lightbox > img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
  transition: transform .4s;
}
.serviceCard:hover .serviceCard__img > a.lightbox > img { transform: scale(1.04); }

.serviceCard__body {
  padding: 22px;
  display: flex; flex-direction: column;
  background: #fff;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.serviceCard__top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
  margin-bottom: 10px;
}
.serviceCard__top h3 { margin: 0; font-size: 20px; color: var(--bark); }

.badge {
  padding: 5px 12px; border-radius: 999px;
  background: rgba(200,120,42,.12);
  border: 1px solid rgba(200,120,42,.25);
  color: var(--amber); font-weight: 700; font-size: 12px;
  white-space: nowrap;
}
.badge--moss {
  background: rgba(74,124,89,.12);
  border-color: rgba(74,124,89,.25);
  color: var(--moss);
}

.serviceCard__body .muted {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
}

.mini {
  list-style: none; padding: 0;
  margin: 12px 0 10px;
  color: var(--muted);
  display: grid; gap: 6px;
  font-size: 14px;
}
.mini li::before { content: '✓ '; color: var(--moss); font-weight: 700; }

.link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  font-weight: 700; font-size: 14px;
  color: var(--amber);
  transition: gap .15s;
}
.link:hover { gap: 10px; }

.thumbs {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  display: flex; gap: 6px; overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.3) transparent;
}
.thumb {
  flex: 0 0 auto; width: 52px; height: 40px;
  border-radius: 8px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.5);
  opacity: .8; transition: opacity .15s, transform .15s, border-color .15s;
}
.thumb img { width:100%; height:100%; object-fit:cover; }
.thumb:hover { opacity: 1; transform: translateY(-2px); border-color: var(--amber); }

/* ── ATMOS ── */
.atmos {
  position: relative; overflow: hidden;
  border-radius: 28px;
  padding: 120px 80px;
  min-height: 500px;
}
.atmos__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.atmos::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,10,4,.88) 0%, rgba(20,10,4,.55) 55%, rgba(20,10,4,.2) 100%);
  z-index: 1;
}
.atmos__content { position: relative; z-index: 2; max-width: 560px; }
.atmos__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(200,120,42,.25);
  border: 1px solid rgba(200,120,42,.40);
  color: var(--sand2); font-size: 13px; font-weight: 700;
  margin-bottom: 18px;
}
.atmos__content h2 { color: var(--sand); font-size: clamp(28px, 4vw, 44px); margin: 0 0 14px; }
.atmos__content p { color: rgba(242,232,213,.80); font-size: 17px; margin: 0 0 24px; }
.atmos__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PRICES ── */
.priceCard {
  padding: 28px; border-radius: var(--r2);
  background: var(--bark);
  border: 1px solid rgba(200,120,42,.25);
  box-shadow: var(--shadow);
}
.priceCard h3 { margin: 0 0 20px; color: #fff; font-size: 22px; }
.priceRows { display: grid; gap: 10px; margin-bottom: 20px; }
.row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.row span { color: #fff; font-size: 14px; flex: 1; }
.row strong { color: #fff; font-size: 18px; }
.price__count { color: rgba(242,232,213,.55); font-size: 12px; min-width: 28px; text-align: right; margin-right: 8px; }

.priceBook {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--sand); border: none;
  border-radius: 16px; padding: 24px 28px;
}
.priceBook__text { display: flex; flex-direction: column; gap: 4px; }
.priceBook__text strong { color: #1a1209; font-size: 18px; }
.priceBook__text span { color: rgba(26,18,9,.75); font-size: 14px; max-width: 480px; }
.priceBook__btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 600px) {
  .priceBook { flex-direction: column; align-items: stretch; }
  .priceBook__btns { flex-direction: column; }
}

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.gallery__item { margin: 0; overflow: hidden; border-radius: var(--r); }
.gallery__item img {
  width: 100%; height: 200px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .35s;
}
.gallery__item:hover img { transform: scale(1.06); }

/* ── LIGHTBOX ── */
.lightboxOverlay {
  position: fixed; inset: 0;
  background: rgba(20,10,4,.95);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.lightboxOverlay img {
  max-width: 90%; max-height: 90%;
  border-radius: var(--r);
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.lbArrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 44px; color: var(--sand);
  cursor: pointer; padding: 20px;
  user-select: none; opacity: .75;
  transition: opacity .15s;
}
.lbArrow:hover { opacity: 1; }
.lbArrow--left { left: 20px; }
.lbArrow--right { right: 20px; }

/* ── RENTALS ── */
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.rentCard {
  background: var(--sand2);
  border-radius: var(--r2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.rentCard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rentCard__img {
  width: 100%; height: 180px;
  object-fit: contain; display: block;
  background: #fff;
  padding: 12px;
  transition: transform .4s;
}
.rentCard:hover .rentCard__img { transform: scale(1.04); }
.rentCard__body {
  padding: 18px;
  display: flex; flex-direction: column;
  flex: 1;
}
.rentCard__top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 10px;
  margin-bottom: 8px;
}
.rentCard__top h3 { margin: 0; font-size: 17px; color: var(--bark); }
.rentCard__price {
  padding: 4px 11px; border-radius: 999px;
  background: rgba(200,120,42,.12);
  border: 1px solid rgba(200,120,42,.25);
  color: var(--amber); font-weight: 700; font-size: 13px;
  white-space: nowrap;
}
.rentCard .muted { font-size: 14px; flex: 1; }
.rentCard .link { margin-top: 14px; }

/* ── PARTNERS ── */
.partners {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 16px;
}
.partnerCard {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  transition: transform .18s, box-shadow .18s;
  height: 110px;
  padding: 0;
  overflow: hidden;
}
.partnerCard img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter .18s;
}
.partnerCard:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(0,0,0,.25); }
.partnerCard:hover img { filter: grayscale(0%); }

/* ── FAQ ── */
.faq { display: grid; gap: 10px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .15s;
}
.faq__item:hover { box-shadow: var(--shadow2); }
.faq__item summary {
  cursor: pointer;
  font-weight: 700; font-size: 16px;
  padding: 18px 20px;
  color: var(--bark);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 22px; font-weight: 300;
  color: var(--amber);
  transition: transform .2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 20px 18px;
  color: var(--muted); line-height: 1.7;
  overflow: hidden;
  transition: height .3s ease;
}

/* ── CONTACT ── */
.form label {
  display: block; margin: 12px 0 6px;
  color: var(--muted); font-size: 13px; font-weight: 700;
  letter-spacing: .3px; text-transform: uppercase;
}
.form input, .form textarea {
  width: 100%; padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--text); font-family: 'Lato', sans-serif; font-size: 15px;
  outline: none; transition: border-color .18s, box-shadow .18s;
}
.form input:focus, .form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,120,42,.12);
}
.formGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stack { display: grid; gap: 10px; margin-top: 16px; }

/* success banner */
.alert-success {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: var(--r);
  background: rgba(74,124,89,.12);
  border: 1.5px solid rgba(74,124,89,.30);
  color: var(--moss);
  font-weight: 700; margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
  background: var(--bark);
  border-top: 3px solid var(--amber);
  padding: 48px 0 24px;
}
.footer__inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--sand);
  margin-bottom: 8px;
}
.footer p { color: rgba(242,232,213,.65); font-size: 14px; margin: 4px 0; }
.footer h4 { color: var(--sand); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 14px; font-family: 'Lato', sans-serif; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: rgba(242,232,213,.65); font-size: 14px; transition: color .15s; }
.footer__links a:hover { color: var(--amber); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; color: rgba(242,232,213,.45); font-size: 13px;
}

/* ── STICKY CTA ── */
.sticky {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  padding: 14px 22px; border-radius: 999px;
  background: var(--amber);
  color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 24px rgba(200,120,42,.50);
  display: none; transition: transform .18s, box-shadow .18s;
}
.sticky:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,120,42,.55); }

/* ── VIDEO PLAY BUTTON (mobile) ── */
.videoPlayBtn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(200,120,42,.88);
  border: 3px solid rgba(255,255,255,.6);
  color: #fff; font-size: 26px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: background .18s, transform .18s;
}
.videoPlayBtn:hover { background: var(--amber); transform: translate(-50%, -50%) scale(1.08); }

/* ── DIVIDER ── */
.divider {
  text-align: center; position: relative; margin: 10px 0;
  color: var(--muted); font-size: 13px;
}
.divider::before, .divider::after {
  content: '';
  position: absolute; top: 50%;
  width: 40%; height: 1px; background: var(--line);
}
.divider::before { left: 0; }
.divider::after { right: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .strip__inner { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .serviceCard { grid-template-columns: 1fr; height: 520px; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .partners { grid-template-columns: repeat(3,1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Remove GPU-heavy effects on mobile */
  .topbar { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero__pill, .stat, .atmos__pill { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu {
    display: none; position: absolute; top: 64px; left: 4%; right: 4%;
    flex-direction: column; align-items: stretch; gap: 6px;
    padding: 14px; border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(253,246,236,.98);
    box-shadow: var(--shadow);
  }
  .menu > a { padding: 12px 14px; border-radius: 10px; }
  .menu__cta { text-align: center; }
  .menuToggle { display: inline-flex; }
  .grid--2 { grid-template-columns: 1fr; }
  .formGrid { grid-template-columns: 1fr; }
  .sticky { display: inline-flex; }
  .hero { min-height: 100svh; }
  .hero__content { padding: 60px 0; }
  .atmos { padding: 70px 24px; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .partners { grid-template-columns: repeat(2,1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .serviceCard { height: auto; min-height: 480px; }
}