:root {
  --bg: #f8fafc;
  --primary: #0b1220;
  --accent: #14b8a6;
  --text: #111827;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(11, 18, 32, 0.1);
  --shadow-strong: 0 18px 40px rgba(11, 18, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  z-index: 2000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 1rem 1rem 0;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  width: min(1120px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.nav-pill.is-scrolled {
  padding: 0.5rem 0.85rem;
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.brand {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  white-space: nowrap;
}

.brand span {
  color: var(--accent);
  margin-left: 0.35rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f2937;
  padding: 0.35rem 0.45rem;
  border-radius: 0.5rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  display: none;
}

.btn {
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 0.7rem 1.05rem;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  background: var(--accent);
  color: var(--white);
}

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

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

.btn-large {
  padding: 0.9rem 1.2rem;
}

.section {
  padding: 5.5rem 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.lead {
  color: #334155;
  margin-bottom: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7.8rem 0 3.2rem;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 18, 32, 0.86) 6%, rgba(11, 18, 32, 0.56) 65%),
    url("/assets/herosection/2865bd35-e90a-4fe4-b74d-92003cc933ff.jpeg") center 30% / cover no-repeat;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
}

.hero-copy {
  max-width: 700px;
  padding: clamp(1rem, 2vw, 1.7rem);
  border-radius: 1.05rem;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.42), rgba(11, 18, 32, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
}

.eyebrow {
  color: #99f6e4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.subheadline {
  max-width: 58ch;
  color: #e5e7eb;
  margin-bottom: 0;
}

.trust-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin: 1.2rem 0 1.6rem;
}

.trust-badge span {
  padding: 0.42rem 0.74rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(248, 250, 252, 0.12);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.agent-card {
  margin: 0;
  max-width: 390px;
  justify-self: end;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(248, 250, 252, 0.12);
  backdrop-filter: blur(4px);
  box-shadow: 0 20px 40px rgba(11, 18, 32, 0.36);
}

.agent-card img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center top;
}

.agent-card figcaption {
  padding: 0.95rem 1rem 1.05rem;
  display: grid;
  gap: 0.2rem;
  font-size: 0.86rem;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.82), rgba(11, 18, 32, 0.94));
}

.agent-card span {
  color: #cbd5e1;
}

.why-grid,
.service-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 1.5rem;
}

#tentang .about-intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 2.3vw, 1.8rem);
  align-items: center;
  margin-bottom: 1.55rem;
}

#tentang .about-copy .lead {
  margin: 0;
  max-width: 68ch;
}

#tentang .about-photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.08);
}

#tentang .about-photo img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center 10%;
}

#tentang .why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

#tentang .about-carousel {
  margin-top: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.08);
}

#tentang .about-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

#tentang .about-slide {
  min-width: 100%;
  margin: 0;
}

#tentang .about-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

#tentang .about-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem 0.8rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

#tentang .about-carousel-btn {
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: #ffffff;
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

#tentang .about-carousel-btn:hover {
  color: #0f766e;
  border-color: #99f6e4;
}

#tentang .about-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

#tentang .about-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}

#tentang .about-dot.is-active {
  background: var(--accent);
}

.mini-card,
.service-card,
.testi-card,
.listing-box,
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(11, 18, 32, 0.05);
}

.mini-card {
  padding: 1.2rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-media {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.service-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-body h3,
.service-body p {
  margin: 0;
}

.service-body p {
  flex: 1;
}

.service-card a {
  color: #0f766e;
  font-weight: 700;
  margin-top: auto;
  align-self: flex-start;
}

.service-card a:hover {
  color: var(--accent);
}

.focus-section {
  background: radial-gradient(circle at 85% 20%, #d1fae5 0%, rgba(209, 250, 229, 0) 42%), var(--bg);
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: stretch;
}

.focus-copy {
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(11, 18, 32, 0.06);
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  border-radius: 9999px;
  background: #f0fdfa;
  color: #115e59;
  border: 1px solid #99f6e4;
  padding: 0.44rem 0.82rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.closing-note {
  margin: 1rem 0 0;
}

.geo-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(160deg, #f8fafc 0%, #f0fdfa 100%);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.07);
  overflow: hidden;
}

.geo-map {
  position: relative;
  min-height: 220px;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.2) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 68%, rgba(20, 184, 166, 0.2) 0 9px, transparent 10px),
    repeating-linear-gradient(
      135deg,
      rgba(11, 18, 32, 0.03) 0,
      rgba(11, 18, 32, 0.03) 6px,
      transparent 6px,
      transparent 16px
    ),
    linear-gradient(180deg, rgba(15, 118, 110, 0.05), rgba(20, 184, 166, 0.08));
}

.geo-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.52rem;
  border-radius: 9999px;
  background: rgba(11, 18, 32, 0.86);
  color: #f8fafc;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.geo-point::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
}

.geo-point-1 {
  top: 20%;
  left: 14%;
}

.geo-point-2 {
  top: 58%;
  left: 52%;
}

.geo-point-3 {
  top: 34%;
  right: 9%;
}

.geo-ring {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(20, 184, 166, 0.6);
  top: 48%;
  left: 46%;
  animation: geoPulse 2.8s ease-in-out infinite;
}

.geo-foot {
  border-top: 1px solid #cbd5e1;
  padding: 0.85rem 1rem 1rem;
}

.geo-title {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
  font-weight: 800;
}

.geo-foot p {
  margin: 0;
  color: #334155;
}

@keyframes geoPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.1);
    opacity: 0.45;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.85;
  }
}

.timeline {
  list-style: none;
  margin: 1.8rem 0;
  padding: 0;
  border-left: 2px solid #ccfbf1;
}

.timeline li {
  position: relative;
  padding: 0.1rem 0 1.4rem 1.2rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -0.48rem;
  top: 0.25rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
}

.listing-head {
  max-width: 70ch;
  margin-bottom: 1rem;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(280px, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.listing-box {
  width: 100%;
  max-width: 500px;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(11, 18, 32, 0.06);
}

.listing-box iframe {
  max-width: 500px;
  width: 100%;
  display: block;
  margin: 0;
}

.listing-side {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.07);
  display: grid;
  gap: 0.75rem;
}

.listing-side-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 800;
}

.listing-side-text {
  margin: 0;
  color: #334155;
}

.fallback-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: center;
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.fallback-row p {
  margin: 0;
  color: #1e3a8a;
}

.fb-fallback {
  display: none;
}

.fb-fallback.show-fallback {
  display: flex;
}

#listing .btn-secondary {
  color: #0f172a;
  border-color: #93c5fd;
  background: #dbeafe;
}

#listing .btn-primary {
  color: var(--white);
}

#listing .listing-side .btn {
  width: 100%;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.quote-card {
  margin: 0;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.06);
}

.quote-card p {
  margin: 0 0 0.65rem;
  color: #1f2937;
  font-weight: 500;
}

.quote-card cite {
  color: #0f766e;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 700;
}

.gallery-head {
  margin: 0.5rem 0 0.85rem;
}

.gallery-head h3 {
  margin: 0 0 0.25rem;
  color: var(--primary);
}

.gallery-head p {
  margin: 0;
  color: #475569;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(11, 18, 32, 0.07);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1rem 1.1rem;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.1rem 1rem;
  color: #334155;
}

.final-cta {
  padding-top: 3rem;
}

.final-cta-box {
  background: linear-gradient(145deg, #0b1220, #111c31);
  border-radius: 1.25rem;
  border: 1px solid #1f2937;
  color: var(--white);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-strong);
}

.final-cta-box h2 {
  color: var(--white);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.2rem;
}

.contact-grid a {
  color: #99f6e4;
}

.social-mix {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.social-mix a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #e2e8f0;
}

.social-mix a:hover {
  color: #99f6e4;
}

.social-mix svg,
.social-icon-only svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.site-footer {
  padding: 2.2rem 0 1.2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.social-icon-only {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-icon-only a {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
}

.social-icon-only a:hover {
  color: var(--accent);
}

.icon-credits {
  border-top: 1px solid var(--border);
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  text-align: center;
  display: grid;
  gap: 0.2rem;
  color: #64748b;
}

.icon-credits small {
  font-size: 0.7rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 990;
  border: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-strong);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .agent-card {
    max-width: 360px;
    justify-self: start;
  }

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

  .geo-map {
    min-height: 200px;
  }

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

@media (max-width: 920px) {
  .brand {
    font-size: 0.78rem;
  }

  .nav-links,
  .nav-pill > .btn-sm {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    display: grid;
    gap: 0.5rem;
    background: rgba(248, 250, 252, 0.97);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-strong);
    padding: 0.7rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu a {
    padding: 0.55rem 0.7rem;
    border-radius: 0.65rem;
    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: #f1f5f9;
    color: #0f766e;
  }

  .mobile-menu .btn {
    margin-top: 0.3rem;
    color: var(--white);
    background: var(--accent);
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 767px) {
  .section {
    padding: 4.3rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 6.6rem;
    padding-bottom: 2.7rem;
  }

  .hero-copy {
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .trust-badge span {
    font-size: 0.78rem;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .agent-card {
    max-width: 100%;
    justify-self: stretch;
  }

  #tentang .about-intro {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  #tentang .about-photo img {
    max-height: 260px;
  }

  #tentang .about-slide img {
    height: 230px;
  }

  .fallback-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-media {
    height: 180px;
  }

  .geo-point {
    font-size: 0.68rem;
  }

  .geo-ring {
    width: 72px;
    height: 72px;
  }

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

  .gallery-card img {
    height: 210px;
  }
}

@media (min-width: 768px) {
  .back-to-top {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
