/* ══════════════════════════════════════════════════════════════
   Original G.C - גל קורנפלד | שיפוצים תחזוקה ועבודות צבע
   styles.css
   ══════════════════════════════════════════════════════════════ */

:root {
  --gold: #C8A44E;
  --gold-light: #E8D5A0;
  --gold-dark: #9A7B30;
  --dark: #2A2A2A;
  --darker: #222222;
  --charcoal: #353535;
  --light: #F5F0E8;
  --text: #E8E4DC;
  --text-dim: #999;
  --success: #4CAF50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--darker);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* ── TOPOGRAPHIC BACKGROUND ── */
#topo-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

body>*:not(script) {
  position: relative;
  z-index: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 164, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 164, 78, 0.1);
  border: 1px solid rgba(200, 164, 78, 0.25);
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  animation: fadeDown 0.8s ease-out;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero-logo {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeDown 0.8s ease-out 0.1s both;
}

.hero h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 0.5rem;
  animation: fadeDown 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--text-dim);
  max-width: 600px;
  margin: 1rem auto 2.5rem;
  line-height: 1.7;
  animation: fadeDown 0.8s ease-out 0.35s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeDown 0.8s ease-out 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--darker);
  box-shadow: 0 4px 24px rgba(200, 164, 78, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 164, 78, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(200, 164, 78, 0.15);
  border-top: 1px solid rgba(200, 164, 78, 0.15);
  border-bottom: 1px solid rgba(200, 164, 78, 0.15);
}

.stat {
  background: var(--darker);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Rubik', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 400;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 600px;
}

/* ── SERVICES ── */
.services-section {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--darker);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(200, 164, 78, 0.08), transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(200, 164, 78, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── PROMISE / ABOUT ── */
.promise-section {
  background: var(--darker);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.promise-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(200, 164, 78, 0.06), rgba(200, 164, 78, 0.02));
  border: 1px solid rgba(200, 164, 78, 0.15);
  border-radius: 20px;
  padding: 3rem;
}

.promise-quote::before {
  content: '"';
  font-family: 'Rubik', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  line-height: 1;
}

.promise-quote p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--light);
  font-weight: 400;
}

.promise-quote .author {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
}

.promise-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promise-points li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}

.promise-points li .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(200, 164, 78, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.promise-points li .check svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

/* ── ABOUT PHOTO ── */
.about-photo-side {
  display: flex;
  flex-direction: column;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(200, 164, 78, 0.2);
  background: rgba(200, 164, 78, 0.04);
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
  display: block;
}

.about-photo img[src=""] {
  display: none;
}

.about-photo img[src=""]:not([src]) {
  display: none;
}

.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(200, 164, 78, 0.3);
  font-size: 0.9rem;
}

.about-photo-placeholder svg {
  width: 56px;
  height: 56px;
}

.about-photo img:not([src=""])~.about-photo-placeholder {
  display: none;
}

/* ── CAROUSEL (shared) ── */
.carousel-wrapper {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 78, 0.3);
  background: rgba(200, 164, 78, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: rgba(200, 164, 78, 0.2);
  border-color: var(--gold);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 164, 78, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--dark);
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  background: var(--darker);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(200, 164, 78, 0.1);
  border: 2px solid rgba(200, 164, 78, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.testimonial-avatar .initials {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-info h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
}

.testimonial-info .location {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-card .quote-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  flex-grow: 1;
}

/* ── WORKS ── */
.works-section {
  background: var(--darker);
}

.work-card {
  min-width: 320px;
  max-width: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.work-card:hover {
  border-color: rgba(200, 164, 78, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.work-card-img {
  width: 100%;
  height: 220px;
  background: rgba(200, 164, 78, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-img .placeholder-icon {
  color: rgba(200, 164, 78, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.work-card-img .placeholder-icon svg {
  width: 40px;
  height: 40px;
  stroke: rgba(200, 164, 78, 0.25);
  fill: none;
  stroke-width: 1.5;
}

.work-card-body {
  background: var(--dark);
  padding: 1.5rem;
}

.work-card-body h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.4rem;
}

.work-card-body p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── AREA ── */
.area-section {
  background: var(--dark);
}

.area-map-wrapper {
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.area-map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: grayscale(0.9) contrast(1.1) brightness(0.7);
  transition: filter 0.4s;
}

.area-map-wrapper:hover iframe {
  filter: grayscale(0.5) contrast(1) brightness(0.8);
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.area-chip {
  background: rgba(200, 164, 78, 0.08);
  border: 1px solid rgba(200, 164, 78, 0.15);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 500;
}

/* ── FLOATING CONTACT FAB ── */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 0.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fab-container.open .fab-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-direction: row;
}

.fab-item-label {
  background: var(--dark);
  border: 1px solid rgba(200, 164, 78, 0.2);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.fab-container.open .fab-item-label {
  opacity: 1;
  transform: translateX(0);
}

.fab-item:nth-child(1) .fab-item-label {
  transition-delay: 0.15s;
}

.fab-item:nth-child(2) .fab-item-label {
  transition-delay: 0.1s;
}

.fab-item:nth-child(3) .fab-item-label {
  transition-delay: 0.05s;
}

.fab-item-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.fab-item-circle svg {
  width: 22px;
  height: 22px;
}

.fab-item-phone .fab-item-circle {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 16px rgba(200, 164, 78, 0.3);
}

.fab-item-phone .fab-item-circle svg {
  stroke: var(--darker);
  fill: none;
  stroke-width: 2;
}

.fab-item-phone:hover .fab-item-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(200, 164, 78, 0.45);
}

.fab-item-whatsapp .fab-item-circle {
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.fab-item-whatsapp .fab-item-circle svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}

.fab-item-whatsapp:hover .fab-item-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.fab-item-hours .fab-item-circle {
  background: rgba(200, 164, 78, 0.1);
  border: 1px solid rgba(200, 164, 78, 0.25);
}

.fab-item-hours .fab-item-circle svg {
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.fab-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--darker);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(200, 164, 78, 0.4);
  transition: all 0.35s ease;
  position: relative;
}

.fab-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 36px rgba(200, 164, 78, 0.55);
}

.fab-container.open .fab-toggle {
  transform: rotate(45deg);
  background: var(--dark);
  border: 2px solid var(--gold);
}

.fab-container.open .fab-toggle svg {
  stroke: var(--gold);
}

.fab-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--darker);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

.fab-toggle .fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: fabPulse 2.5s ease-out infinite;
}

.fab-container.open .fab-pulse {
  animation: none;
  opacity: 0;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.fab-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.fab-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── FOOTER ── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.8;
}

footer .footer-brand {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  /* ── GENERAL ── */
  section {
    padding: 3rem 1.2rem;
  }

  .hero {
    padding: 2rem 1.2rem;
    min-height: 100svh;
  }

  /* ── HERO ── */
  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-sub {
    font-size: 1rem;
    margin: 0.75rem auto 2rem;
  }

  .btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.95rem;
  }

  .hero-cta {
    gap: 0.75rem;
  }

  /* ── STATS BAR — 2×2 grid ── */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 1.75rem 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* ── SECTIONS typography ── */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.9rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  /* ── SERVICES ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-card {
    padding: 1.75rem 1.5rem;
  }

  /* ── ABOUT — stack vertically, photo on top ── */
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    max-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .promise-quote {
    padding: 2rem 1.5rem;
  }

  .promise-quote p {
    font-size: 1.05rem;
  }

  .promise-points li {
    font-size: 0.95rem;
  }

  /* ── CAROUSELS — cards fit screen width ── */
  .testimonial-card {
    min-width: calc(100vw - 3.4rem);
    max-width: calc(100vw - 3.4rem);
  }

  .work-card {
    min-width: calc(100vw - 3.4rem);
    max-width: calc(100vw - 3.4rem);
  }

  .work-card-img {
    height: 200px;
  }

  .carousel-nav {
    margin-top: 1.25rem;
  }

  /* ── MAP ── */
  .area-map-wrapper iframe {
    height: 260px;
  }

  .area-cities {
    gap: 0.5rem;
  }

  .area-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

  /* ── FAB — locked to right edge, labels on left ── */
  .fab-container {
    bottom: 1.5rem;
    right: 0.75rem;
    left: auto;
    align-items: flex-end;
  }

  .fab-menu {
    align-items: flex-end;
  }

  .fab-item {
    flex-direction: row;
    justify-content: flex-end;
  }

  .fab-item-label {
    transform: translateX(10px);
  }

  .fab-container.open .fab-item-label {
    transform: translateX(0);
  }

  .fab-toggle {
    width: 56px;
    height: 56px;
  }

  .fab-item-circle {
    width: 44px;
    height: 44px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 2rem 1.2rem;
  }
}