/* LIQUID NEUTRAL LLC — automotive / marine sourcing theme */

:root {
  --bg-deep: #0a0c10;
  --bg-card: #12151c;
  --bg-elevated: #1a1f2a;
  --text: #e8ecf4;
  --text-muted: #8b95a8;
  --accent: #3dd6c6;
  --accent-dim: #2a9d8f;
  --accent-glow: rgba(61, 214, 198, 0.35);
  --chrome: #c4cdd9;
  --border: rgba(255, 255, 255, 0.08);
  --gradient-liquid: linear-gradient(135deg, #3dd6c6 0%, #4a6fa5 50%, #1a1f2a 100%);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1200px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: #6ee7db;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Liquid background */
.liquid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

#liquidCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.liquid-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 18s ease-in-out infinite;
}

.liquid-orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(61, 214, 198, 0.15);
  top: -10%;
  right: -5%;
}

.liquid-orb--2 {
  width: 320px;
  height: 320px;
  background: rgba(74, 111, 165, 0.2);
  bottom: 20%;
  left: -8%;
  animation-delay: -6s;
}

.liquid-orb--3 {
  width: 260px;
  height: 260px;
  background: rgba(196, 205, 217, 0.06);
  top: 45%;
  left: 40%;
  animation-delay: -12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.header.is-scrolled {
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.logo__icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.logo strong {
  color: var(--accent);
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 0.5rem 1.1rem !important;
  background: var(--accent);
  color: var(--bg-deep) !important;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: #6ee7db;
  color: var(--bg-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn--primary {
  background: var(--gradient-liquid);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn--primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(61, 214, 198, 0.08);
}

.btn--ghost:active {
  transform: scale(0.97);
  background: rgba(61, 214, 198, 0.14);
}

.btn--press {
  position: relative;
  z-index: 1;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.15s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}

.btn--press:hover {
  transform: translateY(-3px);
}

.btn--press:active {
  transform: translateY(1px) scale(0.96);
  transition-duration: 0.05s;
}

.btn--press:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* Hero — full-screen background */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
  animation: heroBgIn 1.2s var(--ease-out) both;
}

@keyframes heroBgIn {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

.hero__bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.72) 42%, rgba(10, 12, 16, 0.35) 68%, rgba(10, 12, 16, 0.55) 100%),
    linear-gradient(to top, rgba(10, 12, 16, 0.85) 0%, transparent 35%);
}

.hero__inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 4rem);
  min-height: calc(100dvh - var(--header-h) - 4rem);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroLineIn 0.8s var(--ease-out) forwards;
}

.hero__line:nth-child(2) {
  animation-delay: 0.15s;
}

.hero__line--accent {
  background: var(--gradient-liquid);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
  position: relative;
  z-index: 2;
}

.hero__lead {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  list-style: none;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero__lead span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(61, 214, 198, 0.35);
  border-radius: 6px;
  background: rgba(10, 12, 16, 0.45);
  backdrop-filter: blur(6px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s var(--ease-out) forwards;
  align-items: center;
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(10, 12, 16, 0.45);
  backdrop-filter: blur(10px);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease-out) forwards;
}

.hero__tags li {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(18, 21, 28, 0.6);
  backdrop-filter: blur(8px);
}

.hero__tags li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Hero overlays on background */
.hero__location {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 6vh, 4rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(10, 12, 16, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  z-index: 2;
}

.hero__location-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section--dark {
  background: linear-gradient(180deg, transparent, rgba(18, 21, 28, 0.6) 20%, rgba(18, 21, 28, 0.9) 50%, transparent);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 36rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head .section-sub {
  margin-inline: auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about__img-wrap:hover img {
  transform: scale(1.05);
}

.about__img-accent {
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  transform: translate(16px, 16px);
  z-index: -1;
  opacity: 0.4;
}

.about__card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  max-width: 220px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  animation: floatCard 5s ease-in-out infinite;
}

.about__card strong {
  display: block;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.about__card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about__features {
  list-style: none;
  margin-top: 1.5rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text);
}

.about__features svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Services — expandable panels */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-panel.is-open {
  border-color: rgba(61, 214, 198, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 48px var(--accent-glow);
}

.service-panel__trigger {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.service-panel__visual {
  position: relative;
  min-height: 140px;
  overflow: hidden;
}

.service-panel__visual img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-panel.is-open .service-panel__visual img,
.service-panel__trigger:hover .service-panel__visual img {
  transform: scale(1.08);
}

.service-panel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, var(--bg-card) 100%);
}

.service-panel__num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(10, 12, 16, 0.75);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  z-index: 1;
}

.service-panel__head {
  padding: 1.35rem 1.25rem 1.35rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  position: relative;
}

.service-panel__head h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-panel__teaser {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-panel.is-open .service-panel__teaser {
  display: none;
}

.service-panel__arrow {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
}

.service-panel__arrow::before,
.service-panel__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}

.service-panel__arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-panel.is-open .service-panel__arrow {
  transform: rotate(180deg);
  border-color: rgba(61, 214, 198, 0.4);
  background: rgba(61, 214, 198, 0.12);
}

.service-panel.is-open .service-panel__arrow::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.service-panel__body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  animation: panelReveal 0.45s var(--ease-out);
}

.service-panel__body[hidden] {
  display: none;
}

.service-panel__body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 1.1rem 0 0.9rem;
  line-height: 1.6;
}

.service-panel__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-panel__body li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}

.service-panel__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parts strip */
.parts-strip {
  padding: 1.5rem 0;
  background: var(--accent);
  color: var(--bg-deep);
  overflow: hidden;
}

.parts-strip__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 25s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.parts-strip__track span {
  white-space: nowrap;
}

/* Categories */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.category-card--full {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 1;
  min-height: 180px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}

.category-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}

.category-card:hover .category-card__overlay {
  transform: translateY(0);
}

.category-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.category-card__overlay p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Gallery — bento grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(200px, 220px));
  gap: 1.25rem;
  max-width: 100%;
}

.gallery__card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 200px;
}

.gallery__card:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

.gallery__card:nth-child(6) {
  grid-column: 2 / span 2;
  grid-row: 3;
}

.gallery__card--tall {
  grid-row: 1 / span 2;
}

.gallery__card--wide {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.gallery__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out), filter 0.4s;
}

.gallery__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.85) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.35s;
}

.gallery__card:hover::before {
  opacity: 1;
}

.gallery__card:hover img {
  transform: scale(1.06);
  filter: saturate(1.15);
}

.gallery__card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.gallery__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
  pointer-events: none;
  z-index: 3;
}

.gallery__card:hover::after {
  border-color: var(--accent);
}

/* CTA band */
.cta-band {
  padding: 5rem 0;
  background: var(--gradient-liquid);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band__inner {
  position: relative;
  text-align: center;
  color: var(--bg-deep);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.8rem;
}

.cta-band p {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  opacity: 0.85;
}

.cta-band .btn--primary {
  background: var(--bg-deep);
  color: var(--accent);
}

/* Contact */
.contact__inner {
  max-width: 42rem;
  margin-inline: auto;
}

.contact__info {
  text-align: center;
}

.contact__info .section-tag,
.contact__info .section-title {
  text-align: center;
}

.contact__address {
  font-style: normal;
  margin: 1.5rem 0;
}

.contact__address p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact__address svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact__address a {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact__social a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.25s;
}

.contact__social a:hover {
  color: var(--accent);
}

.contact__map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
  margin-top: 0.5rem;
}

.contact__map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.6) invert(0.92) contrast(0.9);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
}

.footer a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .hero__bg-shade {
    background:
      linear-gradient(to bottom, rgba(10, 12, 16, 0.88) 0%, rgba(10, 12, 16, 0.75) 50%, rgba(10, 12, 16, 0.9) 100%);
  }

  .hero__location {
    right: 1rem;
    bottom: 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card--full {
    grid-column: 1 / -1;
    aspect-ratio: 2.2 / 1;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__card--tall {
    grid-row: auto;
  }

  .gallery__card--wide {
    grid-column: span 2;
    grid-row: auto;
  }

}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 12, 16, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-panel__trigger {
    grid-template-columns: 1fr;
  }

  .service-panel__visual {
    min-height: 160px;
  }

  .service-panel__head {
    padding: 1.25rem;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .category-card--full {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__card--wide {
    grid-column: span 1;
  }

  .hero__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

