:root {
  --color-bg: #f5f1ea;
  --color-bg-alt: #ece5d8;
  --color-dark: #1c1a17;
  --color-text: #2b2825;
  --color-muted: #6f6a62;
  --color-line: rgba(43, 40, 37, 0.12);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Archivo Black', 'Helvetica Neue', Arial, sans-serif;
  --container-w: 1180px;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}

.section-title--light { color: var(--color-bg); }

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  transition: padding var(--transition);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition);
}

.navbar__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  gap: 40px;
}

.navbar__links a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  position: relative;
  transition: color var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.navbar__links a:hover::after { width: 100%; }

.navbar__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__dropdown-trigger {
  display: inline-flex;
  align-items: center;
}

.navbar__dropdown-trigger::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-right: 7px;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.navbar__dropdown:hover .navbar__dropdown-trigger::before,
.navbar__dropdown:focus-within .navbar__dropdown-trigger::before {
  transform: rotate(225deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 18px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown:focus-within .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.navbar__dropdown-menu__inner {
  background: rgba(245, 241, 234, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-line);
  box-shadow: 0 16px 36px rgba(20, 18, 16, 0.1);
  padding: 8px 0;
}

.navbar__dropdown-menu a {
  display: block;
  padding: 11px 24px;
  font-size: 0.88rem;
  color: var(--color-text);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.navbar__dropdown-menu a::after { display: none; }
.navbar__dropdown-menu a:hover { background: var(--color-bg-alt); }
.navbar__dropdown-menu a.is-current { color: var(--color-muted); }

.navbar.is-scrolled {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-line);
}

.navbar.is-scrolled .navbar__inner { padding: 18px 32px; }
.navbar.is-scrolled .navbar__logo { color: var(--color-dark); }
.navbar.is-scrolled .navbar__links a { color: var(--color-text); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: background var(--transition);
}

.navbar.is-scrolled .navbar__toggle span { background: var(--color-dark); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-bg);
  padding: 0 32px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.navbar__mobile a {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 1rem;
  color: var(--color-text);
}

.navbar__mobile.is-open { max-height: 520px; }

.navbar__mobile a.navbar__mobile-sub {
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ---------- Hero story (scroll-scrubbed construction video) ---------- */
.hero-story {
  position: relative;
  height: 560vh;
  background: var(--color-dark);
}

.hero-story__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-story__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-story__loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.hero-story__loading-track {
  width: min(220px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-story__loading-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 0.2s ease;
}

.hero-story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.4) 0%, rgba(20, 18, 16, 0.2) 45%, rgba(20, 18, 16, 0.6) 100%);
}

/* Sits over the video's watermark to mask it */
.hero-story__badge {
  position: absolute;
  left: 90.5%;
  top: 87%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(28, 26, 23, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 3;
}

.hero-story__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-story__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hs-caption {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  opacity: 0;
}

.hero-story__intro {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  letter-spacing: 0.01em;
  color: #fff;
  opacity: 1;
}

.hero-story__final {
  position: relative;
  opacity: 0;
  transform: translateY(14px);
}

.hero-story__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #fff;
}

.hero-story__subtitle {
  margin-top: 18px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-story__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  opacity: 0;
  animation: heroScrollBounce 1.5s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-story__scroll span {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

@media (max-width: 760px) {
  .hero-story { height: 460vh; }
}

@media (max-width: 767px) {
  .hero-story__pin { height: 100svh; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-story { height: 100vh; }
  .hero-story__pin { position: relative; }
  .hero-story__scroll { animation: none; }
}

/* ---------- Sobre ---------- */
.sobre {
  padding: 160px 0;
}

.sobre__text {
  max-width: 720px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
}

/* ---------- Serveis ---------- */
.serveis {
  padding: 0 0 160px;
}

.serveis__list {
  display: flex;
  flex-direction: column;
}

.servei {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 44px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-text);
  transition: opacity 0.3s ease;
}

.servei:hover { opacity: 0.6; }

.serveis__list .servei:last-child {
  border-bottom: 1px solid var(--color-line);
}

.servei__num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-muted);
}

.servei__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.servei__desc {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 460px;
}

.servei__link {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  white-space: nowrap;
  justify-self: end;
}

/* ---------- Galeria ---------- */
.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 60vh;
  min-height: 360px;
}

.galeria__item {
  position: relative;
  display: block;
  overflow: hidden;
}

.galeria__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galeria__item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galeria__item:hover::after { opacity: 1; }

.galeria__item:hover { transform: scale(1.02); }

.galeria__item {
  transition: transform 0.5s ease;
}

.galeria__label {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 24px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.galeria__item:hover .galeria__label {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Procés ---------- */
.proces {
  padding: 160px 0;
  background: var(--color-bg-alt);
}

.proces__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.pas__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.pas__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pas__desc {
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* ---------- Localització ---------- */
.localitzacio {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 160px 0;
}

.localitzacio__text {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 241, 234, 0.75);
  margin-bottom: 48px;
}

.localitzacio__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 4px;
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

/* ---------- Contacte ---------- */
.contacte {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 160px 0;
}

.contacte__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.contacte__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contacte__form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: rgba(245, 241, 234, 0.7);
}

.contacte__form input,
.contacte__form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 241, 234, 0.3);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-bg);
  resize: none;
  transition: border-color 0.3s ease;
}

.contacte__form input:focus,
.contacte__form textarea:focus {
  outline: none;
  border-color: var(--color-bg);
}

.contacte__form button {
  margin-top: 12px;
  align-self: flex-start;
  background: var(--color-bg);
  color: var(--color-dark);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contacte__form button:hover { opacity: 0.8; }

.contacte__form-msg {
  font-size: 0.9rem;
  color: #c9b896;
  min-height: 1.2em;
}

.contacte__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.contacte__info-block h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-bg);
}

.contacte__info-block p {
  font-size: 1rem;
  color: rgba(245, 241, 234, 0.75);
}

.contacte__info-block a:hover {
  color: var(--color-bg);
}

/* ---------- Service hero (subpages) ---------- */
.service-hero {
  position: relative;
  height: 64vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.15) 0%, rgba(20, 18, 16, 0.6) 100%);
}

.service-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 32px 64px;
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
}

.service-hero__eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 14px;
}

.service-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: -0.01em;
}

/* ---------- Service intro ---------- */
.service-intro {
  padding: 120px 0 0;
}

.service-intro__text {
  max-width: 720px;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
}

/* ---------- Before/after compare slider ---------- */
.compare-section {
  padding: 110px 0 0;
}

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.compare__after,
.compare__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.compare__before {
  clip-path: inset(0 50% 0 0);
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare__handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 20px rgba(20, 18, 16, 0.25);
}

.compare__tag {
  position: absolute;
  top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 18, 16, 0.45);
  backdrop-filter: blur(4px);
  padding: 7px 16px;
  pointer-events: none;
}

.compare__tag--before { left: 20px; }
.compare__tag--after { right: 20px; }

@media (max-width: 760px) {
  .compare-section { padding: 80px 0 0; }
  .compare { aspect-ratio: 4 / 3; }
}

/* ---------- Service steps ---------- */
.service-steps {
  padding: 100px 0 140px;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 70px 0;
  border-top: 1px solid var(--color-line);
}

.service-steps .step:first-child { border-top: none; }

.step--reverse .step__media { order: 2; }
.step--reverse .step__text { order: 1; }

.step__media {
  height: 360px;
  background-size: cover;
  background-position: center;
}

.step__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.step__text h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 16px;
}

.step__text p {
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 440px;
}

/* ---------- Service CTA ---------- */
.service-cta {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 110px 0;
  text-align: center;
}

.service-cta h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn-light {
  display: inline-block;
  background: var(--color-bg);
  color: var(--color-dark);
  padding: 16px 44px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.btn-light:hover { opacity: 0.8; }

/* ---------- Other services ---------- */
.other-services {
  padding: 90px 0 120px;
}

.other-services__label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.other-services__list {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.other-services__list a {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.other-services__list a:hover { opacity: 0.6; }

@media (max-width: 760px) {
  .service-intro { padding: 90px 0 0; }
  .service-steps { padding: 70px 0 100px; }
  .step {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0;
  }
  .step--reverse .step__media { order: 1; }
  .step--reverse .step__text { order: 2; }
  .step__media { height: 260px; }
  .service-cta { padding: 80px 0; }
  .other-services { padding: 64px 0 90px; }
  .other-services__list { gap: 28px; flex-direction: column; }
}

/* ---------- Legal pages ---------- */
.legal-page__header {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 180px 0 64px;
}

.legal-page__header-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
}

.legal-page {
  padding: 90px 0 140px;
}

.legal-page__content {
  max-width: 760px;
}

.legal-page__content h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 48px 0 16px;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.legal-page__content p,
.legal-page__content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.legal-page__content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-page__content a {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-line);
}

.legal-page__content strong {
  color: var(--color-text);
  font-weight: 500;
}

@media (max-width: 760px) {
  .legal-page__header { padding: 140px 0 48px; }
  .legal-page { padding: 60px 0 90px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(245, 241, 234, 0.5);
  text-align: center;
  font-size: 0.82rem;
  padding: 28px 0 36px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(245, 241, 234, 0.5);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--color-bg);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .proces__list { grid-template-columns: repeat(2, 1fr); gap: 56px 32px; }
  .contacte__grid { grid-template-columns: 1fr; gap: 64px; }
  .galeria { grid-template-columns: repeat(3, 1fr); height: 42vh; }
}

@media (max-width: 760px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__mobile { display: flex; }

  .sobre, .proces, .contacte, .localitzacio { padding: 100px 0; }
  .serveis { padding: 0 0 100px; }
  .localitzacio__map iframe { height: 320px; }

  .servei {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }

  .servei__link {
    justify-self: start;
  }

  .proces__list { grid-template-columns: 1fr; gap: 44px; }

  .galeria { grid-template-columns: 1fr; height: auto; }
  .galeria__item { height: 240px; }

  .section-title { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 22px; }
  .navbar__inner { padding: 22px 22px; }
  .navbar.is-scrolled .navbar__inner { padding: 14px 22px; }
  .navbar__mobile { padding: 0 22px; }
}
